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-ir.workspace = true24jrsonnet-stdlib.workspace = true25jrsonnet-gcmodule.workspace = true26jrsonnet-interner.workspace = true2728[lib]29name = "jsonnet"30crate-type = ["cdylib", "staticlib"]3132[features]33default = ["interop-common", "interop-wasm", "interop-threading"]3435interop-common = []3637interop-wasm = []3839interop-threading = []4041experimental = ["exp-preserve-order", "exp-destruct"]42exp-preserve-order = [43 "jrsonnet-evaluator/exp-preserve-order",44 "jrsonnet-stdlib/exp-preserve-order",45]46exp-destruct = ["jrsonnet-evaluator/exp-destruct"]