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]19exp-null-coaelse = [20 "jrsonnet-evaluator/exp-null-coaelse",21 "jrsonnet-stdlib/exp-null-coaelse",22]23exp-regex = [24 "jrsonnet-stdlib/exp-regex",25]26legacy-this-file = ["jrsonnet-stdlib/legacy-this-file"]2728[dependencies]29jrsonnet-evaluator = { workspace = true, features = ["explaining-traces"] }30jrsonnet-parser.workspace = true31jrsonnet-stdlib.workspace = true32jrsonnet-gcmodule.workspace = true3334clap = { workspace = true, features = ["derive"] }