git.delta.rocks / jrsonnet / refs/commits / 59f19ba582ad

difftreelog

source

crates/jrsonnet-stdlib/Cargo.toml1.2 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 = ["jrsonnet-evaluator/exp-null-coaelse"]20# std.regexMatch and other helpers21exp-regex = ["dep:regex", "dep:lru", "dep:rustc-hash"]2223[dependencies]24jrsonnet-evaluator.workspace = true25jrsonnet-macros.workspace = true26jrsonnet-gcmodule.workspace = true2728# Used for std.parseJson/std.parseYaml29serde.workspace = true3031# std.md532md5.workspace = true33# std.sha134sha1.workspace = true35# std.sha256, std.sha51236sha2.workspace = true37# std.sha338sha3.workspace = true39# std.base6440base64.workspace = true41# std.parseJson42serde_json.workspace = true43# std.parseYaml44serde-saphyr.workspace = true4546hex.workspace = true47num-bigint = { workspace = true, optional = true }4849# regex50regex = { workspace = true, optional = true }51lru = { workspace = true, optional = true }52rustc-hash = { workspace = true, optional = true }