git.delta.rocks / jrsonnet / refs/commits / 0afc5f71ec0d

difftreelog

source

crates/jsonnet-evaluator/Cargo.toml1.2 KiBsourcehistory
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"]11# Serializes standard library AST instead of parsing them every run12serialized-stdlib = ["serde", "bincode", "jsonnet-parser/deserialize"]13# Same as above, but with generated code instead of serde. Reduces memory usage, but increases binary size and compilation time14codegenerated-stdlib = []15# Replace some standard library functions with faster implementations (I.e manifestJsonEx)16# Library works fine without this feature, but requires more memory and time for std function calls17faster = []1819[dependencies]20jsonnet-parser = { path = "../jsonnet-parser" }21closure = "0.3.0"22jsonnet-stdlib = { path = "../jsonnet-stdlib" }23indexmap = "1.4.0"24md5 = "0.7.0"2526serde = { version = "1.0.114", optional = true }27bincode = { version = "1.3.1", optional = true }2829[build-dependencies]30jsonnet-parser = { path = "../jsonnet-parser", features = ["dump", "serialize", "deserialize"] }31jsonnet-stdlib = { path = "../jsonnet-stdlib" }32structdump = "0.1.2"33serde = "1.0.114"34bincode = "1.3.1"