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

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml1.7 KiBsourcehistory
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version = "0.4.2"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = ["serialized-stdlib", "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# Rustc-like trace visualization16explaining-traces = ["annotate-snippets"]17# Allows library authors to throw custom errors18anyhow-error = ["anyhow"]1920# Unlocks extra features, but works only on unstable21unstable = []2223[dependencies]24jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.2" }25jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }26jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }27jrsonnet-types = { path = "../jrsonnet-types", version = "0.4.2" }28pathdiff = "0.2.0"2930md5 = "0.7.0"31base64 = "0.13.0"32rustc-hash = "1.1.0"3334thiserror = "1.0"35jrsonnet-gc = { version = "0.4.2", features = ["derive"] }3637[dependencies.anyhow]38version = "1.0"39optional = true4041# Serialized stdlib42[dependencies.serde]43version = "1.0"44optional = true45[dependencies.bincode]46version = "1.3.1"47optional = true4849# Serde json50[dependencies.serde_json]51version = "1.0"52optional = true5354# Explaining traces55[dependencies.annotate-snippets]56version = "0.9.0"57features = ["color"]58optional = true5960[build-dependencies]61jrsonnet-parser = { path = "../jrsonnet-parser", features = [62    "serialize",63    "deserialize",64], version = "0.4.2" }65jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }66serde = "1.0"67bincode = "1.3.1"