git.delta.rocks / jrsonnet / refs/commits / 72f4bf90cdcb

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml1.7 KiBsourcehistory
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version = "0.3.3"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = ["serialized-stdlib", "faster", "explaining-traces", "serde-json"]11# Serializes standard library AST instead of parsing them every run12serialized-stdlib = ["serde", "bincode", "jrsonnet-parser/deserialize"]13# Allow to convert Val into serde_json::Value and backwards14serde-json = ["serde", "serde_json"]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 = []18# Rustc-like trace visualization19explaining-traces = ["annotate-snippets"]2021# Unlocks extra features, but works only on unstable22unstable = []2324[dependencies]25jrsonnet-interner = { path = "../jrsonnet-interner" }26jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.3" }27jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.3" }28jrsonnet-types = { path = "../jrsonnet-types", version = "0.3.3" }29pathdiff = "0.2.0"3031closure = "0.3.0"32indexmap = "1.6"3334md5 = "0.7.0"35base64 = "0.13.0"36rustc-hash = "1.1.0"3738thiserror = "1.0"3940# Serialized stdlib41[dependencies.serde]42version = "1.0"43optional = true44[dependencies.bincode]45version = "1.3.1"46optional = true4748# Serde json49[dependencies.serde_json]50version = "1.0"51optional = true5253# Explaining traces54[dependencies.annotate-snippets]55version = "0.9.0"56features = ["color"]57optional = true5859[build-dependencies]60jrsonnet-parser = { path = "../jrsonnet-parser", features = ["serialize", "deserialize"], version = "0.3.3" }61jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.3" }62serde = "1.0"63bincode = "1.3.1"