git.delta.rocks / jrsonnet / refs/commits / 74199ce77317

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 = "2021"89[features]10default = ["serialized-stdlib", "explaining-traces"]11# Serializes standard library AST instead of parsing them every run12serialized-stdlib = ["bincode", "jrsonnet-parser/serde"]13# Rustc-like trace visualization14explaining-traces = ["annotate-snippets"]15# Allows library authors to throw custom errors16anyhow-error = ["anyhow"]1718[dependencies]19jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.2" }20jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }21jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }22jrsonnet-types = { path = "../jrsonnet-types", version = "0.4.2" }23jrsonnet-macros = { path = "../jrsonnet-macros", version = "0.4.2" }24pathdiff = "0.2.1"2526md5 = "0.7.0"27base64 = "0.13.0"28rustc-hash = "1.1"2930thiserror = "1.0"31gcmodule = { git = "https://github.com/CertainLach/gcmodule", branch = "jrsonnet" }3233serde = "1.0"34serde_json = "1.0"35serde_yaml = { git = "https://github.com/CertainLach/serde-yaml", branch = "feature/old-octals-quirk" }3637[dependencies.anyhow]38version = "1.0"39optional = true4041# Serialized stdlib42[dependencies.bincode]43version = "1.3"44optional = true4546# Explaining traces47[dependencies.annotate-snippets]48version = "0.9.1"49features = ["color"]50optional = true5152[build-dependencies]53jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }54jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }55serde = "1.0"56bincode = "1.3"