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

difftreelog

source

crates/jrsonnet-stdlib/Cargo.toml1.3 KiBsourcehistory
1[package]2name = "jrsonnet-stdlib"3description = "Jsonnet standard library implementation for jrsonnet"4keywords = ["jsonnet", "stdlib"]5categories = ["template-engine"]6authors.workspace = true7edition.workspace = true8license.workspace = true9repository.workspace = true10version.workspace = true1112[lints]13workspace = true1415[features]16# Add order preservation flag to some functions17exp-preserve-order = ["jrsonnet-evaluator/exp-preserve-order"]18# Bigint type19exp-bigint = ["dep:num-bigint", "jrsonnet-evaluator/exp-bigint"]2021exp-null-coaelse = ["jrsonnet-evaluator/exp-null-coaelse"]22# std.regexMatch and other helpers23exp-regex = ["dep:regex", "dep:lru", "dep:rustc-hash"]2425[dependencies]26jrsonnet-evaluator.workspace = true27jrsonnet-macros.workspace = true28jrsonnet-gcmodule.workspace = true2930# Used for std.parseJson/std.parseYaml31serde.workspace = true3233# std.md534md5.workspace = true35# std.sha136sha1.workspace = true37# std.sha256, std.sha51238sha2.workspace = true39# std.sha340sha3.workspace = true41# std.base6442base64.workspace = true43# std.parseJson44serde_json.workspace = true45# std.parseYaml46serde-saphyr.workspace = true4748hex.workspace = true49num-bigint = { workspace = true, optional = true }5051# regex52regex = { workspace = true, optional = true }53lru = { workspace = true, optional = true }54rustc-hash = { workspace = true, optional = true }