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

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml1.9 KiBsourcehistory
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version = "0.3.8"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"]20# Allows library authors to throw custom errors21anyhow-error = ["anyhow"]2223# Unlocks extra features, but works only on unstable24unstable = []2526[dependencies]27jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.3.8" }28jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.8" }29jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.8" }30jrsonnet-types = { path = "../jrsonnet-types", version = "0.3.8" }31pathdiff = "0.2.0"3233md5 = "0.7.0"34base64 = "0.13.0"35rustc-hash = "1.1.0"3637thiserror = "1.0"38gc = { version = "0.4.1", features = ["derive"] }3940[dependencies.anyhow]41version = "1.0"42optional = true4344# Serialized stdlib45[dependencies.serde]46version = "1.0"47optional = true48[dependencies.bincode]49version = "1.3.1"50optional = true5152# Serde json53[dependencies.serde_json]54version = "1.0"55optional = true5657# Explaining traces58[dependencies.annotate-snippets]59version = "0.9.0"60features = ["color"]61optional = true6263[build-dependencies]64jrsonnet-parser = { path = "../jrsonnet-parser", features = ["serialize", "deserialize"], version = "0.3.8" }65jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.8" }66serde = "1.0"67bincode = "1.3.1"