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 = ["serialized-stdlib", "explaining-traces"]1112serialized-stdlib = ["bincode", "jrsonnet-parser/serde"]1314explaining-traces = ["annotate-snippets"]1516anyhow-error = ["anyhow"]171819exp-preserve-order = []20exp-serde-preserve-order = ["serde_json/preserve_order"]2122exp-destruct = ["jrsonnet-parser/exp-destruct"]2324[dependencies]25jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.2" }26jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }27jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }28jrsonnet-types = { path = "../jrsonnet-types", version = "0.4.2" }29jrsonnet-macros = { path = "../jrsonnet-macros", version = "0.4.2" }30pathdiff = "0.2.1"31hashbrown = "0.12.1"32static_assertions = "1.1.0"3334md5 = "0.7.0"35base64 = "0.13.0"36rustc-hash = "1.1"3738thiserror = "1.0"39gcmodule = { git = "https://github.com/CertainLach/gcmodule", branch = "jrsonnet" }4041serde = "1.0"42serde_json = "1.0"43serde_yaml = { git = "https://github.com/CertainLach/serde-yaml", branch = "feature/old-octals-quirk" }4445[dependencies.anyhow]46version = "1.0"47optional = true484950[dependencies.bincode]51version = "1.3"52optional = true535455[dependencies.annotate-snippets]56version = "0.9.1"57features = ["color"]58optional = true5960[build-dependencies]61jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }62jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }63serde = "1.0"64bincode = "1.3"