git.delta.rocks / jrsonnet / refs/commits / 11643ec5f009

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml1.7 KiBsourcehistory
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"]11# Serializes standard library AST instead of parsing them every run12serialized-stdlib = ["bincode", "jrsonnet-parser/serde"]13# Rustc-like trace visualization14explaining-traces = ["annotate-snippets"]15# Allows library authors to throw custom errors16anyhow-error = ["anyhow"]1718# Allows to preserve field order in objects19exp-preserve-order = []20exp-serde-preserve-order = ["serde_json/preserve_order"]2122[dependencies]23jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.2" }24jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }25jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }26jrsonnet-types = { path = "../jrsonnet-types", version = "0.4.2" }27jrsonnet-macros = { path = "../jrsonnet-macros", version = "0.4.2" }28pathdiff = "0.2.1"2930md5 = "0.7.0"31base64 = "0.13.0"32rustc-hash = "1.1"3334thiserror = "1.0"35gcmodule = { git = "https://github.com/CertainLach/gcmodule", branch = "jrsonnet" }3637serde = "1.0"38serde_json = "1.0"39serde_yaml = { git = "https://github.com/CertainLach/serde-yaml", branch = "feature/old-octals-quirk" }4041[dependencies.anyhow]42version = "1.0"43optional = true4445# Serialized stdlib46[dependencies.bincode]47version = "1.3"48optional = true4950# Explaining traces51[dependencies.annotate-snippets]52version = "0.9.1"53features = ["color"]54optional = true5556[build-dependencies]57jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }58jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.4.2" }59serde = "1.0"60bincode = "1.3"