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

difftreelog

source

crates/jsonnet-evaluator/Cargo.toml983 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"]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"