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

difftreelog

source

cmds/jrsonnet/Cargo.toml948 Bsourcehistory
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10experimental = ["exp-preserve-order", "exp-destruct"]11# Use mimalloc as allocator12mimalloc = ["mimallocator"]13# Experimental feature, which allows to preserve order of object fields14exp-preserve-order = [15    "jrsonnet-evaluator/exp-preserve-order",16    "jrsonnet-cli/exp-preserve-order",17]18# Destructuring of locals19exp-destruct = ["jrsonnet-evaluator/exp-destruct"]20# std.thisFile support21legacy-this-file = ["jrsonnet-cli/legacy-this-file"]2223[dependencies]24jrsonnet-evaluator.workspace = true25jrsonnet-parser.workspace = true26jrsonnet-cli.workspace = true27jrsonnet-gcmodule = { version = "0.3.4" }2829mimallocator = { version = "0.1.3", optional = true }30thiserror = "1.0"31clap = { version = "4.0", features = ["derive"] }32clap_complete = { version = "4.0" }