git.delta.rocks / jrsonnet / refs/commits / 7b01ecbd8fbc

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml1.4 KiBsourcehistory
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version.workspace = true5authors = ["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# Iteration over objects yields [key, value] elements24exp-object-iteration = []2526# Improves performance, and implements some useful things using nightly-only features27nightly = []2829[dependencies]30jrsonnet-interner.workspace = true31jrsonnet-parser.workspace = true32jrsonnet-types.workspace = true33jrsonnet-macros.workspace = true34jrsonnet-gcmodule = { version = "0.3.4" }3536pathdiff = "0.2.1"37hashbrown = "0.12.3"38static_assertions = "1.1"3940rustc-hash = "1.1"4142thiserror = "1.0"4344serde = "1.0"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 }