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

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml1.6 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"]18# Adds ability to build import closure in async19async-import = ["async-trait"]2021# Allows to preserve field order in objects22exp-preserve-order = []23# Implements field destructuring24exp-destruct = ["jrsonnet-parser/exp-destruct"]25# Iteration over objects yields [key, value] elements26exp-object-iteration = []2728# Improves performance, and implements some useful things using nightly-only features29nightly = ["hashbrown/nightly"]3031[dependencies]32jrsonnet-interner.workspace = true33jrsonnet-parser.workspace = true34jrsonnet-types.workspace = true35jrsonnet-macros.workspace = true36jrsonnet-gcmodule.workspace = true3738pathdiff = "0.2.1"39hashbrown = "0.13.2"40static_assertions = "1.1"4142rustc-hash = "1.1"4344thiserror = "1.0"4546serde = "1.0"4748anyhow = { version = "1.0", optional = true }49# Friendly errors50strsim = { version = "0.10.0", optional = true }51# Serialized stdlib52bincode = { version = "1.3", optional = true }53# Explaining traces54annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }55# Async imports56async-trait = { version = "0.1.60", optional = true }