git.delta.rocks / jrsonnet / refs/commits / 1d4b842070e4

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml1.7 KiBsourcehistory
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version = "1.0.0"5authors = ["Лач <iam@lach.pw>"]6license = "MIT"7edition = "2018"89# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html1011[features]12default = ["serialized-stdlib", "faster", "explaining-traces"]13# Serializes standard library AST instead of parsing them every run14serialized-stdlib = ["serde", "bincode", "jrsonnet-parser/deserialize"]15# Same as above, but with generated code instead of serde. Reduces memory usage, but increases binary size and compilation time16codegenerated-stdlib = []17# Replace some standard library functions with faster implementations (I.e manifestJsonEx)18# Library works fine without this feature, but requires more memory and time for std function calls19faster = []20# Rustc-like trace visualization21explaining-traces = ["annotate-snippets"]2223# Unlocks extra features, but works only on unstable24unstable = []2526[dependencies]27jrsonnet-parser = { path = "../jrsonnet-parser", version = "1.0.0" }28jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }29pathdiff = "0.2.0"3031closure = "0.3.0"32indexmap = "1.4.0"3334md5 = "0.7.0"35base64 = "0.12.3"3637# Serialized stdlib38[dependencies.serde]39version = "1.0.114"40optional = true41[dependencies.bincode]42version = "1.3.1"43optional = true4445# Explaining traces46[dependencies.annotate-snippets]47version = "0.9.0"48optional = true4950[build-dependencies]51jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "1.0.0" }52jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }53structdump = "0.1.2"54serde = "1.0.114"55bincode = "1.3.1"