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

difftreelog

source

crates/jrsonnet-stdlib/Cargo.toml1.6 KiBsourcehistory
1[package]2name = "jrsonnet-stdlib"3description = "jsonnet standard library packaged as crate"4version.workspace = true5repository.workspace = true6authors = ["Yaroslav Bolyukin <iam@lach.pw>"]7license = "MIT"8edition = "2021"910[features]11default = ["codegenerated-stdlib"]12# Speed-up initialization by generating code for parsed stdlib, instead13# of invoking parser for it14codegenerated-stdlib = ["jrsonnet-parser/structdump"]15# Enables legacy `std.thisFile` support, at the cost of worse caching16legacy-this-file = []17# Add order preservation flag to some functions18exp-preserve-order = ["jrsonnet-evaluator/exp-preserve-order"]19# Bigint type20exp-bigint = ["num-bigint", "jrsonnet-evaluator/exp-bigint"]2122exp-null-coaelse = ["jrsonnet-parser/exp-null-coaelse", "jrsonnet-evaluator/exp-null-coaelse"]2324[dependencies]25jrsonnet-evaluator.workspace = true26jrsonnet-macros.workspace = true27jrsonnet-parser.workspace = true28jrsonnet-gcmodule.workspace = true2930# Used for stdlib AST serialization31bincode = { workspace = true, optional = true }32# Used both for stdlib AST serialization and std.parseJson/std.parseYaml33serde.workspace = true3435# std.md536md5.workspace = true37# std.sha138sha1.workspace = true39# std.sha256, std.sha51240sha2.workspace = true41# std.sha342sha3.workspace = true43# std.base6444base64.workspace = true45# std.parseJson46serde_json.workspace = true47# std.parseYaml, custom library fork is used for C++/golang compatibility48serde_yaml_with_quirks.workspace = true4950num-bigint = { workspace = true, optional = true }5152[build-dependencies]53jrsonnet-parser.workspace = true54structdump = { workspace = true, features = ["derive"] }