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"3132md5 = "0.7.0"33base64 = "0.13.0"34rustc-hash = "1.1"3536thiserror = "1.0"37gcmodule = { git = "https://github.com/CertainLach/gcmodule", branch = "jrsonnet" }3839serde = "1.0"40serde_json = "1.0"41serde_yaml = { git = "https://github.com/CertainLach/serde-yaml", branch = "feature/old-octals-quirk" }4243[dependencies.anyhow]44version = "1.0"45optional = true464748[dependencies.bincode]49version = "1.3"50optional = true515253[dependencies.annotate-snippets]54version = "0.9.1"55features = ["color"]56optional = true5758[build-dependencies]59jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }60jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }61serde = "1.0"62bincode = "1.3"