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

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml1.9 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", "ir-parser"]17# Rustc-like trace visualization18explaining-traces = ["annotate-snippets", "hi-doc"]19# Allows library authors to throw custom errors20anyhow-error = ["anyhow"]21# Use hand-written recursive descent parser instead of PEG parser22ir-parser = ["dep:jrsonnet-ir-parser"]2324# Allows to preserve field order in objects25exp-preserve-order = []26# Implements field destructuring27exp-destruct = ["jrsonnet-peg-parser/exp-destruct"]28# Iteration over objects yields [key, value] elements29exp-object-iteration = []30# Bigint type31exp-bigint = ["num-bigint", "jrsonnet-types/exp-bigint"]32# obj?.field, obj?.['field']33exp-null-coaelse = ["jrsonnet-peg-parser/exp-null-coaelse", "jrsonnet-ir-parser?/exp-null-coaelse"]3435[dependencies]36jrsonnet-interner.workspace = true37jrsonnet-ir.workspace = true38jrsonnet-peg-parser.workspace = true39jrsonnet-ir-parser = { workspace = true, optional = true }40jrsonnet-types.workspace = true41jrsonnet-macros.workspace = true42jrsonnet-gcmodule.workspace = true4344pathdiff.workspace = true45static_assertions.workspace = true4647rustc-hash.workspace = true4849thiserror.workspace = true50# Friendly errors51strsim.workspace = true5253serde.workspace = true5455anyhow = { workspace = true, optional = true }56# Explaining traces57annotate-snippets = { workspace = true, optional = true }58# Better explaining traces59hi-doc = { workspace = true, optional = true }60# Bigint61num-bigint = { workspace = true, features = ["serde"], optional = true }6263stacker = "0.1.23"64educe = { version = "0.6.0", default-features = false, features = ["Clone", "Debug", "Eq", "Hash", "PartialEq"] }6566[build-dependencies]67rustversion = "1.0.22"