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

difftreelog

source

crates/jrsonnet-cli/Cargo.toml729 Bsourcehistory
1[package]2name = "jrsonnet-cli"3description = "Utilities for building jrsonnet CLIs"4version.workspace = true5repository.workspace = true6authors = ["Yaroslav Bolyukin <iam@lach.pw>"]7license = "MIT"8edition = "2021"910[features]11exp-preserve-order = [12    "jrsonnet-evaluator/exp-preserve-order",13    "jrsonnet-stdlib/exp-preserve-order",14]15exp-bigint = [16    "jrsonnet-evaluator/exp-bigint",17    "jrsonnet-stdlib/exp-bigint",18]19legacy-this-file = ["jrsonnet-stdlib/legacy-this-file"]2021[dependencies]22jrsonnet-evaluator = { workspace = true, features = ["explaining-traces"] }23jrsonnet-parser.workspace = true24jrsonnet-stdlib.workspace = true25jrsonnet-gcmodule.workspace = true2627clap = { version = "4.1", features = ["derive"] }