git.delta.rocks / jrsonnet / refs/commits / 48e38361db94

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml2.1 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 parser22ir-parser = ["dep:jrsonnet-ir-parser"]23# Use PEG parser24peg-parser = ["dep:jrsonnet-peg-parser"]2526# Allows to preserve field order in objects27exp-preserve-order = []28# Implements field destructuring29exp-destruct = [30  "jrsonnet-peg-parser?/exp-destruct",31  "jrsonnet-ir-parser?/exp-destruct",32]33# Iteration over objects yields [key, value] elements34exp-object-iteration = []35# Bigint type36exp-bigint = ["num-bigint", "jrsonnet-types/exp-bigint"]37# obj?.field, obj?.['field']38exp-null-coaelse = [39  "jrsonnet-peg-parser?/exp-null-coaelse",40  "jrsonnet-ir-parser?/exp-null-coaelse",41]4243[dependencies]44jrsonnet-interner.workspace = true45jrsonnet-ir.workspace = true46jrsonnet-peg-parser = { workspace = true, optional = true }47jrsonnet-ir-parser = { workspace = true, optional = true }48jrsonnet-types.workspace = true49jrsonnet-macros.workspace = true50jrsonnet-gcmodule.workspace = true5152pathdiff.workspace = true53static_assertions.workspace = true5455rustc-hash.workspace = true5657thiserror.workspace = true58# Friendly errors59strsim.workspace = true6061serde.workspace = true6263anyhow = { workspace = true, optional = true }64# Explaining traces65annotate-snippets = { workspace = true, optional = true }66# Better explaining traces67hi-doc = { workspace = true, optional = true }68# Bigint69num-bigint = { workspace = true, features = ["serde"], optional = true }7071stacker = "0.1.23"72educe = { version = "0.6.0", default-features = false, features = [73  "Clone",74  "Debug",75  "Eq",76  "Hash",77  "PartialEq",78] }79im-rc = { version = "15.1.0", features = ["pool"] }8081[build-dependencies]82rustversion = "1.0.22"