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

difftreelog

source

crates/jsonnet-evaluator/Cargo.toml801 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", "faster"]11serialized-stdlib = ["serde", "bincode"]12# Replace some standard library functions with faster implementations13faster = []1415[dependencies]16jsonnet-parser = { path = "../jsonnet-parser" }17closure = "0.3.0"18jsonnet-stdlib = { path = "../jsonnet-stdlib" }19indexmap = "1.4.0"2021[dependencies.serde]22version = "1.0.111"23optional = true2425[dependencies.bincode]26version = "1.2.1"27optional = true2829[build-dependencies]30jsonnet-parser = { path = "../jsonnet-parser" }31jsonnet-stdlib = { path = "../jsonnet-stdlib" }32serde = "1.0.111"33bincode = "1.2.1"