git.delta.rocks / jrsonnet / refs/commits / a18f0b6c2a9a

difftreelog

source

crates/jsonnet-evaluator/Cargo.toml709 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" }17indexmap = "1.4.0"1819[dependencies.serde]20version = "1.0.111"21optional = true2223[dependencies.bincode]24version = "1.2.1"25optional = true2627[build-dependencies]28jsonnet-parser = { path = "../jsonnet-parser" }29jsonnet-stdlib = { path = "../jsonnet-stdlib" }30serde = "1.0.111"31bincode = "1.2.1"