git.delta.rocks / jrsonnet / refs/heads / master

difftreelog

source

cmds/jrb/Cargo.toml667 Bsourcehistory
1[package]2name = "jrb"3description = "jsonnet package manager"4authors.workspace = true5edition.workspace = true6license.workspace = true7repository.workspace = true8version.workspace = true910[lints]11workspace = true1213[dependencies]14jrsonnet-pkg.workspace = true1516clap = { workspace = true, features = ["derive"] }17serde = { workspace = true }18serde_json.workspace = true19tracing.workspace = true20tracing-subscriber.workspace = true2122# jrsonnet-pkg wants a rustls provider.23# ring is not ideal and not recommended by rustls authors... But is easiest to build,24# and there should be little risk for bundling use case25rustls = { workspace = true, features = ["ring"] }