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"]1112explaining-traces = ["annotate-snippets"]1314anyhow-error = ["anyhow"]151617friendly-errors = ["strsim"]1819async-import = ["async-trait"]202122exp-preserve-order = []2324exp-destruct = ["jrsonnet-parser/exp-destruct"]2526exp-object-iteration = []2728exp-bigint = ["num-bigint"]293031nightly = ["hashbrown/nightly"]3233[dependencies]34jrsonnet-interner.workspace = true35jrsonnet-parser.workspace = true36jrsonnet-types.workspace = true37jrsonnet-macros.workspace = true38jrsonnet-gcmodule.workspace = true3940pathdiff = "0.2.1"41hashbrown = "0.13.2"42static_assertions = "1.1"4344rustc-hash = "1.1"4546thiserror = "1.0"4748serde = "1.0"4950anyhow = { version = "1.0", optional = true }5152strsim = { version = "0.10.0", optional = true }5354bincode = { version = "1.3", optional = true }5556annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }5758async-trait = { version = "0.1.60", optional = true }5960num-bigint = { version = "0.4.3", features = ["serde"], optional = true }