12345678[package]9name = "libjsonnet"10description = "Rust implementation of libjsonnet.so"11authors.workspace = true12edition.workspace = true13license.workspace = true14repository.workspace = true15version.workspace = true16publish = false1718[lints]19workspace = true2021[dependencies]22jrsonnet-evaluator.workspace = true23jrsonnet-parser.workspace = true24jrsonnet-stdlib.workspace = true25jrsonnet-gcmodule.workspace = true2627[lib]28name = "jsonnet"29crate-type = ["cdylib"]3031[features]3233interop = []34experimental = ["exp-preserve-order", "exp-destruct"]35exp-preserve-order = ["jrsonnet-evaluator/exp-preserve-order"]36exp-destruct = ["jrsonnet-evaluator/exp-destruct"]