git.delta.rocks / jrsonnet / refs/commits / b932109b27ad

difftreelog

source

crates/jrsonnet-stdlib/Cargo.toml1.2 KiBsourcehistory
1[package]2name = "jrsonnet-stdlib"3description = "jsonnet standard library packaged as crate"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10default = ["codegenerated-stdlib"]11# Speed-up initialization by generating code for parsed stdlib, instead12# of invoking parser for it13codegenerated-stdlib = ["jrsonnet-parser/structdump"]14# Enables legacy `std.thisFile` support, at the cost of worse caching15legacy-this-file = []16# Add order preservation flag to some functions17exp-preserve-order = ["jrsonnet-evaluator/exp-preserve-order"]1819[dependencies]20jrsonnet-evaluator.workspace = true21jrsonnet-macros.workspace = true22jrsonnet-parser.workspace = true23jrsonnet-gcmodule = "0.3.4"2425# Used for stdlib AST serialization26bincode = { version = "1.3", optional = true }27# Used both for stdlib AST serialization and std.parseJson/std.parseYaml28serde = "1.0"2930# std.md531md5 = "0.7.0"32# std.base6433base64 = "0.13.1"34# std.parseJson35serde_json = "1.0"36# std.parseYaml, custom library fork is used for C++/golang compatibility37serde_yaml_with_quirks = "0.8.24"3839[build-dependencies]40jrsonnet-parser.workspace = true41structdump = { version = "0.2.0", features = ["derive"] }