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

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 = ["explaining-traces", "friendly-errors"]11# Rustc-like trace visualization12explaining-traces = ["annotate-snippets"]13# Allows library authors to throw custom errors14anyhow-error = ["anyhow"]15# Provides helpful explaintations to errors, at cost of adding16# more dependencies and slowing down error path17friendly-errors = ["strsim"]1819# Allows to preserve field order in objects20exp-preserve-order = []21exp-serde-preserve-order = ["serde_json/preserve_order"]22# Implements field destructuring23exp-destruct = ["jrsonnet-parser/exp-destruct"]24# Provide Typed for conversions to/from serde_json::Value type25serde_json = ["dep:serde_json"]2627[dependencies]28jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.2" }29jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }30jrsonnet-types = { path = "../jrsonnet-types", version = "0.4.2" }31jrsonnet-macros = { path = "../jrsonnet-macros", version = "0.4.2" }32jrsonnet-gcmodule = { version = "0.3.4" }3334pathdiff = "0.2.1"35hashbrown = "0.12.1"36static_assertions = "1.1"3738rustc-hash = "1.1"3940thiserror = "1.0"4142serde = "1.0"43# Optional integration44serde_json = { version = "1.0.82", optional = true }4546anyhow = { version = "1.0", optional = true }47# Friendly errors48strsim = { version = "0.10.0", optional = true }49# Serialized stdlib50bincode = { version = "1.3", optional = true }51# Explaining traces52annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }