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"]1213explaining-traces = ["annotate-snippets"]1415anyhow-error = ["anyhow"]1617async-import = ["async-trait"]181920exp-preserve-order = []2122exp-destruct = ["jrsonnet-parser/exp-destruct"]2324exp-object-iteration = []2526exp-bigint = ["num-bigint", "jrsonnet-types/exp-bigint"]272829nightly = ["hashbrown/nightly"]3031[dependencies]32jrsonnet-interner.workspace = true33jrsonnet-parser.workspace = true34jrsonnet-types.workspace = true35jrsonnet-macros.workspace = true36jrsonnet-gcmodule.workspace = true3738pathdiff = "0.2.1"39hashbrown = "0.13.2"40static_assertions = "1.1"4142rustc-hash = "1.1"4344thiserror = "1.0"4546strsim = { version = "0.10.0" }4748serde = "1.0"4950anyhow = { version = "1.0", optional = true }5152bincode = { version = "1.3", optional = true }5354annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }5556async-trait = { version = "0.1.60", optional = true }5758num-bigint = { version = "0.4.3", features = ["serde"], optional = true }