git.delta.rocks / jrsonnet / refs/commits / 4f26f96ee098

difftreelog

source

crates/jrsonnet-stdlib/Cargo.toml1.5 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# Enables legacy `std.thisFile` support, at the cost of worse caching15legacy-this-file = []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-parser/exp-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-parser.workspace = true29jrsonnet-gcmodule.workspace = true3031# Used for std.parseJson/std.parseYaml32serde.workspace = true3334# std.md535md5.workspace = true36# std.sha137sha1.workspace = true38# std.sha256, std.sha51239sha2.workspace = true40# std.sha341sha3.workspace = true42# std.base6443base64.workspace = true44# std.parseJson45serde_json.workspace = true46# std.parseYaml, custom library fork is used for C++/golang compatibility47serde_yaml_with_quirks.workspace = true4849num-bigint = { workspace = true, optional = true }5051# regex52regex = { workspace = true, optional = true }53lru = { workspace = true, optional = true }54rustc-hash = { workspace = true, optional = true }5556[build-dependencies]57jrsonnet-parser.workspace = true