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

difftreelog

source

crates/jrsonnet-stdlib/Cargo.toml1.3 KiBsourcehistory
1[package]2name = "jrsonnet-stdlib"3description = "jsonnet standard library packaged as crate"4authors.workspace = true5edition.workspace = true6license.workspace = true7repository.workspace = true8version.workspace = true910[lints]11workspace = true1213[features]14# Add order preservation flag to some functions15exp-preserve-order = ["jrsonnet-evaluator/exp-preserve-order"]16# Bigint type17exp-bigint = ["dep:num-bigint", "jrsonnet-evaluator/exp-bigint"]1819exp-null-coaelse = [20  "jrsonnet-ir/exp-null-coaelse",21  "jrsonnet-evaluator/exp-null-coaelse",22]23# std.regexMatch and other helpers24exp-regex = ["dep:regex", "dep:lru", "dep:rustc-hash"]2526[dependencies]27jrsonnet-evaluator.workspace = true28jrsonnet-macros.workspace = true29jrsonnet-ir.workspace = true30jrsonnet-gcmodule.workspace = true3132# Used for 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.parseYaml48serde-saphyr.workspace = true4950num-bigint = { workspace = true, optional = true }5152# regex53regex = { workspace = true, optional = true }54lru = { workspace = true, optional = true }55rustc-hash = { workspace = true, optional = true }