git.delta.rocks / jrsonnet / refs/commits / 80f6128c09ce

difftreelog

source

crates/jrsonnet-pkg/Cargo.toml1.1 KiBsourcehistory
1[package]2name = "jrsonnet-pkg"3description = "jsonnet-bundler jsonnetfile parser and installer"4authors.workspace = true5edition.workspace = true6license.workspace = true7repository.workspace = true8version.workspace = true910[lints]11workspace = true1213[dependencies]14serde = { workspace = true, features = ["derive"] }15serde_json.workspace = true16thiserror.workspace = true17tracing.workspace = true1819# Source url parser20peg.workspace = true2122# Gix for git repos, reqwest + zip for github23zip.workspace = true24url.workspace = true25camino.workspace = true2627# Global cache dir28directories.workspace = true2930[target.'cfg(not(any(all(target_os = "windows", target_env = "gnu"), target_vendor = "apple")))'.dependencies]31gix = { workspace = true, features = [32  "blocking-http-transport-reqwest-rust-tls",33] }34reqwest = { workspace = true, features = ["rustls"] }3536[target.'cfg(any(all(target_os = "windows", target_env = "gnu"), target_vendor = "apple"))'.dependencies]37gix = { workspace = true, features = [38  "blocking-http-transport-reqwest-native-tls",39] }40reqwest = { workspace = true, features = ["native-tls"] }