1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version = "0.4.2"5authors = ["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"]181920exp-preserve-order = []2122exp-destruct = ["jrsonnet-parser/exp-destruct"]2324nightly = []2526[dependencies]27jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.2" }28jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }29jrsonnet-types = { path = "../jrsonnet-types", version = "0.4.2" }30jrsonnet-macros = { path = "../jrsonnet-macros", version = "0.4.2" }31jrsonnet-gcmodule = { version = "0.3.4" }3233pathdiff = "0.2.1"34hashbrown = "0.12.1"35static_assertions = "1.1"3637rustc-hash = "1.1"3839thiserror = "1.0"4041serde = "1.0"4243anyhow = { version = "1.0", optional = true }4445strsim = { version = "0.10.0", optional = true }4647bincode = { version = "1.3", optional = true }4849annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }