git.delta.rocks / jrsonnet / refs/commits / 44f6e2c9e550

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml1.7 KiBsourcehistory
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4authors.workspace = true5edition.workspace = true6license.workspace = true7repository.workspace = true8version.workspace = true910build = "build.rs"1112[lints]13workspace = true1415[features]16default = ["explaining-traces"]17# Rustc-like trace visualization18explaining-traces = ["annotate-snippets", "hi-doc"]19# Allows library authors to throw custom errors20anyhow-error = ["anyhow"]2122# Allows to preserve field order in objects23exp-preserve-order = []24# Implements field destructuring25exp-destruct = ["jrsonnet-peg-parser/exp-destruct"]26# Iteration over objects yields [key, value] elements27exp-object-iteration = []28# Bigint type29exp-bigint = ["num-bigint", "jrsonnet-types/exp-bigint"]30# obj?.field, obj?.['field']31exp-null-coaelse = ["jrsonnet-peg-parser/exp-null-coaelse"]3233[dependencies]34jrsonnet-interner.workspace = true35jrsonnet-ir.workspace = true36jrsonnet-peg-parser.workspace = true37jrsonnet-types.workspace = true38jrsonnet-macros.workspace = true39jrsonnet-gcmodule.workspace = true4041pathdiff.workspace = true42static_assertions.workspace = true4344rustc-hash.workspace = true4546thiserror.workspace = true47# Friendly errors48strsim.workspace = true4950serde.workspace = true5152anyhow = { workspace = true, optional = true }53# Explaining traces54annotate-snippets = { workspace = true, optional = true }55# Better explaining traces56hi-doc = { workspace = true, optional = true }57# Bigint58num-bigint = { workspace = true, features = ["serde"], optional = true }5960stacker = "0.1.23"61educe = { version = "0.6.0", default-features = false, features = ["Clone", "Debug", "Eq", "Hash", "PartialEq"] }6263[build-dependencies]64rustversion = "1.0.22"