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

difftreelog

source

tests/Cargo.toml943 Bsourcehistory
1[package]2name = "tests"3version = "0.1.0"4edition = "2024"5publish = false67[features]8default = ["ir-parser"]9experimental = [10  "exp-destruct",11  "exp-null-coaelse",12  "exp-preserve-order",13  "exp-bigint",14  "exp-regex",15]16ir-parser = ["jrsonnet-evaluator/ir-parser"]17peg-parser = ["jrsonnet-evaluator/peg-parser"]18exp-destruct = ["jrsonnet-evaluator/exp-destruct"]19exp-null-coaelse = ["jrsonnet-evaluator/exp-null-coaelse"]20exp-preserve-order = ["jrsonnet-stdlib/exp-preserve-order"]21exp-bigint = ["jrsonnet-stdlib/exp-bigint"]22exp-regex = ["jrsonnet-stdlib/exp-regex"]2324[lints]25workspace = true2627[dependencies]28jrsonnet-evaluator.workspace = true29jrsonnet-gcmodule.workspace = true30jrsonnet-stdlib.workspace = true31mimallocator.workspace = true32serde.workspace = true33serde_json.workspace = true3435[dev-dependencies]36insta.workspace = true37criterion.workspace = true3839[lib]40bench = false4142[[bench]]43name = "cpp_test_suite"44harness = false