git.delta.rocks / jrsonnet / refs/commits / 5df60b8b674f

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 = ["jrsonnet-parser/exp-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-parser.workspace = true27jrsonnet-gcmodule.workspace = true2829# Used for std.parseJson/std.parseYaml30serde.workspace = true3132# std.md533md5.workspace = true34# std.sha135sha1.workspace = true36# std.sha256, std.sha51237sha2.workspace = true38# std.sha339sha3.workspace = true40# std.base6441base64.workspace = true42# std.parseJson43serde_json.workspace = true44# std.parseYaml45serde-saphyr.workspace = true4647num-bigint = { workspace = true, optional = true }4849# regex50regex = { workspace = true, optional = true }51lru = { workspace = true, optional = true }52rustc-hash = { workspace = true, optional = true }5354[build-dependencies]55jrsonnet-parser.workspace = true