difftreelog
build add serialized-stdlib feature description
in: master
2 files changed
Cargo.lockdiffbeforeafterboth--- a/Cargo.lock
+++ b/Cargo.lock
@@ -140,6 +140,7 @@
"indexmap",
"jsonnet-parser",
"jsonnet-stdlib",
+ "md5",
"serde",
]
@@ -171,6 +172,12 @@
checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49"
[[package]]
+name = "md5"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
+
+[[package]]
name = "os_str_bytes"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
crates/jsonnet-evaluator/Cargo.tomldiffbeforeafterboth1[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"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"]13# Replace some standard library functions with faster implementations14# Library works fine without this feature, but requires more memory and time for std function calls15faster = []1617[dependencies]18jsonnet-parser = { path = "../jsonnet-parser" }19closure = "0.3.0"20jsonnet-stdlib = { path = "../jsonnet-stdlib" }21indexmap = "1.4.0"22md5 = "0.7.0"2324[dependencies.serde]25version = "1.0.114"26optional = true2728[dependencies.bincode]29version = "1.3.1"30optional = true3132[build-dependencies]33jsonnet-parser = { path = "../jsonnet-parser" }34jsonnet-stdlib = { path = "../jsonnet-stdlib" }35serde = "1.0.114"36bincode = "1.3.1"