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

difftreelog

source

crates/jsonnet-evaluator/Cargo.toml901 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"2122[dependencies.serde]23version = "1.0.114"24optional = true2526[dependencies.bincode]27version = "1.3.1"28optional = true2930[build-dependencies]31jsonnet-parser = { path = "../jsonnet-parser" }32jsonnet-stdlib = { path = "../jsonnet-stdlib" }33serde = "1.0.114"34bincode = "1.3.1"