1[package]2name = "libjsonnet"3description = "Rust implementation of libjsonnet.so"4authors.workspace = true5edition.workspace = true6license.workspace = true7repository.workspace = true8version.workspace = true9publish = false1011[lints]12workspace = true1314[dependencies]15jrsonnet-evaluator.workspace = true16jrsonnet-parser.workspace = true17jrsonnet-stdlib.workspace = true18jrsonnet-gcmodule.workspace = true1920[lib]21name = "jsonnet"22crate-type = ["cdylib"]2324[features]2526interop = []27experimental = ["exp-preserve-order", "exp-destruct"]28exp-preserve-order = ["jrsonnet-evaluator/exp-preserve-order"]29exp-destruct = ["jrsonnet-evaluator/exp-destruct"]