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", "hi-doc"]1415anyhow-error = ["anyhow"]1617async-import = []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.workspace = true41hashbrown.workspace = true42static_assertions.workspace = true4344rustc-hash.workspace = true4546thiserror.workspace = true4748strsim.workspace = true4950serde.workspace = true5152anyhow = { workspace = true, optional = true }5354bincode = { workspace = true, optional = true }5556annotate-snippets = { workspace = true, optional = true }5758hi-doc = { workspace = true, optional = true }5960num-bigint = { workspace = true, features = ["serde"], optional = true }61derivative.workspace = true