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]16exp-preserve-order = [17 "jrsonnet-evaluator/exp-preserve-order",18 "jrsonnet-stdlib/exp-preserve-order",19]20exp-bigint = ["jrsonnet-evaluator/exp-bigint", "jrsonnet-stdlib/exp-bigint"]21exp-null-coaelse = [22 "jrsonnet-evaluator/exp-null-coaelse",23 "jrsonnet-stdlib/exp-null-coaelse",24]25exp-regex = ["jrsonnet-stdlib/exp-regex"]2627[dependencies]28jrsonnet-evaluator = { workspace = true, features = ["explaining-traces"] }29jrsonnet-ir.workspace = true30jrsonnet-stdlib.workspace = true31jrsonnet-gcmodule.workspace = true3233clap = { workspace = true, features = ["derive"] }