git.delta.rocks / jrsonnet / refs/heads / master

difftreelog

source

crates/jrsonnet-stdlib/Cargo.toml1.4 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]16experimental = [17  "exp-preserve-order",18  "exp-bigint",19  "exp-null-coaelse",20  "exp-regex",21]22# Add order preservation flag to some functions23exp-preserve-order = ["jrsonnet-evaluator/exp-preserve-order"]24# Bigint type25exp-bigint = ["dep:num-bigint", "jrsonnet-evaluator/exp-bigint"]2627exp-null-coaelse = ["jrsonnet-evaluator/exp-null-coaelse"]28# std.regexMatch and other helpers29exp-regex = ["dep:regex", "dep:lru", "dep:rustc-hash"]3031[dependencies]32jrsonnet-evaluator.workspace = true33jrsonnet-macros.workspace = true34jrsonnet-gcmodule.workspace = true3536# Used for std.parseJson/std.parseYaml37serde.workspace = true3839# std.md540md5.workspace = true41# std.sha142sha1.workspace = true43# std.sha256, std.sha51244sha2.workspace = true45# std.sha346sha3.workspace = true47# std.base6448base64.workspace = true49# std.parseJson50serde_json.workspace = true51# std.parseYaml52serde-saphyr.workspace = true5354hex.workspace = true55num-bigint = { workspace = true, optional = true }5657# regex58regex = { workspace = true, optional = true }59lru = { workspace = true, optional = true }60rustc-hash = { workspace = true, optional = true }