git.delta.rocks / jrsonnet / refs/commits / dfc17edefcd4

difftreelog

source

cmds/jrsonnet/Cargo.toml807 Bsourcehistory
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version = "0.4.2"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"8publish = false910[features]11# Use mimalloc as allocator12mimalloc = ["mimallocator"]1314[dependencies]15jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.4.2" }16jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.4.2" }17jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.4.2" }18mimallocator = { version = "0.1.3", optional = true }19thiserror = "1.0"2021[dependencies.clap]22git = "https://github.com/clap-rs/clap"23rev = "f0c5ea5e1503de5c8e74d8c047a799cf51498e83"2425[dependencies.clap_generate]26git = "https://github.com/clap-rs/clap"27rev = "f0c5ea5e1503de5c8e74d8c047a799cf51498e83"