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 = ["jrsonnet-evaluator/exp-bigint", "jrsonnet-stdlib/exp-bigint"]19exp-null-coaelse = [20 "jrsonnet-evaluator/exp-null-coaelse",21 "jrsonnet-stdlib/exp-null-coaelse",22]23exp-regex = ["jrsonnet-stdlib/exp-regex"]2425[dependencies]26jrsonnet-evaluator = { workspace = true, features = ["explaining-traces"] }27jrsonnet-ir.workspace = true28jrsonnet-stdlib.workspace = true29jrsonnet-gcmodule.workspace = true3031clap = { workspace = true, features = ["derive"] }