git.delta.rocks / jrsonnet / refs/commits / 6db420cedf84

difftreelog

source

crates/jsonnet-evaluator/Cargo.toml915 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 implementations13# Library works fine without this feature, but requires more memory and time for std function calls14faster = []1516[dependencies]17jsonnet-parser = { path = "../jsonnet-parser" }18closure = "0.3.0"19jsonnet-stdlib = { path = "../jsonnet-stdlib" }20indexmap = "1.4.0"21md5 = "0.7.0"2223[dependencies.serde]24version = "1.0.114"25optional = true2627[dependencies.bincode]28version = "1.3.1"29optional = true3031[build-dependencies]32jsonnet-parser = { path = "../jsonnet-parser" }33jsonnet-stdlib = { path = "../jsonnet-stdlib" }34serde = "1.0.114"35bincode = "1.3.1"