1[package]2name = "jrsonnet-cli"3description = "Reusable clap-based building blocks for jrsonnet command-line tools"4keywords = ["jsonnet", "cli", "clap"]5categories = ["command-line-interface"]6authors.workspace = true7edition.workspace = true8license.workspace = true9repository.workspace = true10version.workspace = true1112[lints]13workspace = true1415[features]16experimental = [17 "exp-preserve-order",18 "exp-bigint",19 "exp-null-coaelse",20 "exp-regex",21]22exp-preserve-order = [23 "jrsonnet-evaluator/exp-preserve-order",24 "jrsonnet-stdlib/exp-preserve-order",25]26exp-bigint = ["jrsonnet-evaluator/exp-bigint", "jrsonnet-stdlib/exp-bigint"]27exp-null-coaelse = [28 "jrsonnet-evaluator/exp-null-coaelse",29 "jrsonnet-stdlib/exp-null-coaelse",30]31exp-regex = ["jrsonnet-stdlib/exp-regex"]3233[dependencies]34jrsonnet-evaluator = { workspace = true, features = ["explaining-traces"] }35jrsonnet-ir.workspace = true36jrsonnet-stdlib.workspace = true37jrsonnet-gcmodule.workspace = true3839clap = { workspace = true, features = ["derive"] }