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

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml1.6 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"]11# Serializes standard library AST instead of parsing them every run12serialized-stdlib = ["bincode", "jrsonnet-parser/deserialize"]13# Rustc-like trace visualization14explaining-traces = ["annotate-snippets"]15# Allows library authors to throw custom errors16anyhow-error = ["anyhow"]1718# Unlocks extra features, but works only on unstable19unstable = []2021[dependencies]22jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.2" }23jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }24jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }25jrsonnet-types = { path = "../jrsonnet-types", version = "0.4.2" }26pathdiff = "0.2.0"2728md5 = "0.7.0"29base64 = "0.13.0"30rustc-hash = "1.1.0"3132thiserror = "1.0"33gcmodule = { git = "https://github.com/CertainLach/gcmodule", branch = "jrsonnet" }3435serde = "1.0"36serde_json = "1.0"37serde_yaml = { git = "https://github.com/CertainLach/serde-yaml", branch = "feature/old-octals-quirk" }3839[dependencies.anyhow]40version = "1.0"41optional = true4243# Serialized stdlib44[dependencies.bincode]45version = "1.3.1"46optional = true4748# Explaining traces49[dependencies.annotate-snippets]50version = "0.9.1"51features = ["color"]52optional = true5354[build-dependencies]55jrsonnet-parser = { path = "../jrsonnet-parser", features = [56    "serialize",57    "deserialize",58], version = "0.4.2" }59jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }60serde = "1.0"61bincode = "1.3.1"