git.delta.rocks / jrsonnet / refs/commits / 31da3dd5cc47

difftreelog

source

crates/jsonnet-evaluator/Cargo.toml690 Bsourcehistory
1[package]2name = "jsonnet-evaluator"3version = "0.1.0"4authors = ["Лач <iam@lach.pw>"]5edition = "2018"67# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html89[features]10default = ["serialized-stdlib"]11serialized-stdlib = ["serde", "bincode"]1213[dependencies]14jsonnet-parser = { path = "../jsonnet-parser" }15closure = "0.3.0"16jsonnet-stdlib = { path = "../jsonnet-stdlib" }1718[dependencies.serde]19version = "1.0.111"20optional = true2122[dependencies.bincode]23version = "1.2.1"24optional = true2526[build-dependencies]27jsonnet-parser = { path = "../jsonnet-parser" }28jsonnet-stdlib = { path = "../jsonnet-stdlib" }29serde = "1.0.111"30bincode = "1.2.1"