1[package]2name = "jrsonnet-cli"3description = "Utilities for building jrsonnet CLIs"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10exp-preserve-order = [11 "jrsonnet-evaluator/exp-preserve-order",12 "jrsonnet-stdlib/exp-preserve-order",13]14exp-bigint = [15 "jrsonnet-evaluator/exp-bigint",16 "jrsonnet-stdlib/exp-bigint",17]18legacy-this-file = ["jrsonnet-stdlib/legacy-this-file"]1920[dependencies]21jrsonnet-evaluator = { workspace = true, features = ["explaining-traces"] }22jrsonnet-parser.workspace = true23jrsonnet-stdlib.workspace = true24jrsonnet-gcmodule.workspace = true2526clap = { version = "4.1", features = ["derive"] }