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"]2728exp-null-coaelse = ["jrsonnet-parser/exp-null-coaelse"]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"4748strsim = { version = "0.10.0" }4950serde.workspace = true5152anyhow = { version = "1.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 }61derivative = "2.2.0"