1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version.workspace = true5repository.workspace = true6authors = ["Yaroslav Bolyukin <iam@lach.pw>"]7license = "MIT"8edition = "2021"910[features]11default = ["explaining-traces", "friendly-errors"]1213explaining-traces = ["annotate-snippets"]1415anyhow-error = ["anyhow"]161718friendly-errors = ["strsim"]1920async-import = ["async-trait"]212223exp-preserve-order = []2425exp-destruct = ["jrsonnet-parser/exp-destruct"]2627exp-object-iteration = []2829exp-bigint = ["num-bigint", "jrsonnet-types/exp-bigint"]303132nightly = ["hashbrown/nightly"]3334[dependencies]35jrsonnet-interner.workspace = true36jrsonnet-parser.workspace = true37jrsonnet-types.workspace = true38jrsonnet-macros.workspace = true39jrsonnet-gcmodule.workspace = true4041pathdiff = "0.2.1"42hashbrown = "0.13.2"43static_assertions = "1.1"4445rustc-hash = "1.1"4647thiserror = "1.0"4849serde = "1.0"5051anyhow = { version = "1.0", optional = true }5253strsim = { version = "0.10.0", optional = true }5455bincode = { version = "1.3", optional = true }5657annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }5859async-trait = { version = "0.1.60", optional = true }6061num-bigint = { version = "0.4.3", features = ["serde"], optional = true }