git.delta.rocks / jrsonnet / refs/commits / 8766467a8ebe

difftreelog

source

bindings/jsonnet/Cargo.toml562 Bsourcehistory
1[package]2name = "jsonnet"3description = "Rust implementation of libjsonnet.so"4version = "0.3.8"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"8publish = false910[dependencies]11jrsonnet-interner = { path = "../../crates/jrsonnet-interner", version = "0.3.8" }12jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.8" }13jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.8" }14gc = { version = "0.4.1", features = ["derive"] }1516[lib]17crate-type = ["cdylib"]1819[features]20interop = []