git.delta.rocks / jrsonnet / refs/commits / e7b9349e7c72

difftreelog

source

cmds/jrsonnet/Cargo.toml1.7 KiBsourcehistory
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version.workspace = true5repository.workspace = true6authors = ["Yaroslav Bolyukin <iam@lach.pw>"]7license = "MIT"8edition = "2021"910[features]11experimental = [12    "exp-preserve-order",13    "exp-destruct",14    "exp-null-coaelse",15    "exp-object-iteration",16    "exp-bigint",17    "exp-apply",18]19# Use mimalloc as allocator20mimalloc = ["mimallocator"]21# Experimental feature, which allows to preserve order of object fields22exp-preserve-order = [23    "jrsonnet-evaluator/exp-preserve-order",24    "jrsonnet-cli/exp-preserve-order",25]26# Destructuring of locals27exp-destruct = ["jrsonnet-evaluator/exp-destruct"]28# Iteration over objects yields [key, value] elements29exp-object-iteration = ["jrsonnet-evaluator/exp-object-iteration"]30# Bigint type31exp-bigint = ["jrsonnet-evaluator/exp-bigint", "jrsonnet-cli/exp-bigint"]32# std.regex and co.33exp-regex = ["jrsonnet-cli/exp-regex"]34# obj?.field, obj?.['field']35exp-null-coaelse = [36    "jrsonnet-evaluator/exp-null-coaelse",37    "jrsonnet-parser/exp-null-coaelse",38    "jrsonnet-cli/exp-null-coaelse",39]40# --exp-apply41exp-apply = []4243# std.thisFile support44legacy-this-file = ["jrsonnet-cli/legacy-this-file"]4546nightly = ["jrsonnet-evaluator/nightly"]4748[dependencies]49jrsonnet-evaluator.workspace = true50jrsonnet-parser.workspace = true51jrsonnet-cli.workspace = true52jrsonnet-gcmodule.workspace = true5354mimallocator = { workspace = true, optional = true }55thiserror.workspace = true56clap = { workspace = true, features = ["derive"] }57clap_complete.workspace = true58serde_json.workspace = true59serde = { workspace = true, features = ["derive"] }60ass-stroke.workspace = true