git.delta.rocks / jrsonnet / refs/commits / 8db09e1bbe2e

difftreelog

source

bindings/jsonnet/Cargo.toml488 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-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.8" }12jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.8" }13jrsonnet-gc = { version = "0.4.2", features = ["derive"] }1415[lib]16crate-type = ["cdylib"]1718[features]19interop = []