1[package]2name = "jrsonnet-cli"3description = "Utilities for building jrsonnet CLIs"4authors.workspace = true5edition.workspace = true6license.workspace = true7repository.workspace = true8version.workspace = true910[lints]11workspace = true1213[features]14exp-preserve-order = [15 "jrsonnet-evaluator/exp-preserve-order",16 "jrsonnet-stdlib/exp-preserve-order",17]18exp-bigint = [19 "jrsonnet-evaluator/exp-bigint",20 "jrsonnet-stdlib/exp-bigint",21]22exp-null-coaelse = [23 "jrsonnet-evaluator/exp-null-coaelse",24 "jrsonnet-stdlib/exp-null-coaelse",25]26exp-regex = [27 "jrsonnet-stdlib/exp-regex",28]2930[dependencies]31jrsonnet-evaluator = { workspace = true, features = ["explaining-traces"] }32jrsonnet-parser.workspace = true33jrsonnet-stdlib.workspace = true34jrsonnet-gcmodule.workspace = true3536clap = { workspace = true, features = ["derive"] }