git.delta.rocks / jrsonnet / refs/commits / 2d3e9127fca2

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"]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" }26jrsonnet-macros = { path = "../jrsonnet-macros", version = "0.4.2" }27pathdiff = "0.2.0"2829md5 = "0.7.0"30base64 = "0.13.0"31rustc-hash = "1.1.0"3233thiserror = "1.0"34gcmodule = { git = "https://github.com/CertainLach/gcmodule", branch = "jrsonnet" }3536serde = "1.0"37serde_json = "1.0"38serde_yaml = { git = "https://github.com/CertainLach/serde-yaml", branch = "feature/old-octals-quirk" }3940[dependencies.anyhow]41version = "1.0"42optional = true4344# Serialized stdlib45[dependencies.bincode]46version = "1.3.1"47optional = true4849# Explaining traces50[dependencies.annotate-snippets]51version = "0.9.1"52features = ["color"]53optional = true5455[build-dependencies]56jrsonnet-parser = { path = "../jrsonnet-parser", features = [57    "serialize",58    "deserialize",59], version = "0.4.2" }60jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }61serde = "1.0"62bincode = "1.3.1"