git.delta.rocks / jrsonnet / refs/commits / 78d45eb4e76f

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml1.5 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 = []21# Implements field destructuring22exp-destruct = ["jrsonnet-parser/exp-destruct"]23# Improves performance, and implements some useful things using nightly-only features24nightly = []2526[dependencies]27jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.2" }28jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }29jrsonnet-types = { path = "../jrsonnet-types", version = "0.4.2" }30jrsonnet-macros = { path = "../jrsonnet-macros", version = "0.4.2" }31jrsonnet-gcmodule = { version = "0.3.4" }3233pathdiff = "0.2.1"34hashbrown = "0.12.1"35static_assertions = "1.1"3637rustc-hash = "1.1"3839thiserror = "1.0"4041serde = "1.0"4243anyhow = { version = "1.0", optional = true }44# Friendly errors45strsim = { version = "0.10.0", optional = true }46# Serialized stdlib47bincode = { version = "1.3", optional = true }48# Explaining traces49annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }