git.delta.rocks / jrsonnet / refs/commits / 397e1ed786bb

difftreelog

source

bindings/jsonnet/Cargo.toml690 Bsourcehistory
1[package]2name = "libjsonnet"3description = "Rust implementation of libjsonnet.so"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"8publish = false910[dependencies]11jrsonnet-evaluator.workspace = true12jrsonnet-parser.workspace = true13jrsonnet-stdlib.workspace = true14jrsonnet-gcmodule.workspace = true1516[lib]17name = "jsonnet"18crate-type = ["cdylib"]1920[features]21# Export additional functions for native integration, i.e ability to set custom trace format22interop = []23experimental = ["exp-preserve-order", "exp-destruct"]24exp-preserve-order = ["jrsonnet-evaluator/exp-preserve-order"]25exp-destruct = ["jrsonnet-evaluator/exp-destruct"]