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

difftreelog

source

crates/jrsonnet-stdlib/Cargo.toml1.8 KiBsourcehistory
1[package]2name = "jrsonnet-stdlib"3description = "jsonnet standard library packaged as crate"4version.workspace = true5repository.workspace = true6authors = ["Yaroslav Bolyukin <iam@lach.pw>"]7license = "MIT"8edition = "2021"910[features]11default = ["codegenerated-stdlib"]12# Speed-up initialization by generating code for parsed stdlib, instead13# of invoking parser for it14codegenerated-stdlib = ["jrsonnet-parser/structdump"]15# Enables legacy `std.thisFile` support, at the cost of worse caching16legacy-this-file = []17# Add order preservation flag to some functions18exp-preserve-order = ["jrsonnet-evaluator/exp-preserve-order"]19# Bigint type20exp-bigint = ["num-bigint", "jrsonnet-evaluator/exp-bigint"]2122exp-null-coaelse = ["jrsonnet-parser/exp-null-coaelse", "jrsonnet-evaluator/exp-null-coaelse"]23# std.regexMatch and other helpers24exp-regex = ["regex", "lru", "rustc-hash"]2526[dependencies]27jrsonnet-evaluator.workspace = true28jrsonnet-macros.workspace = true29jrsonnet-parser.workspace = true30jrsonnet-gcmodule.workspace = true3132# Used for stdlib AST serialization33bincode = { workspace = true, optional = true }34# Used both for stdlib AST serialization and std.parseJson/std.parseYaml35serde.workspace = true3637# std.md538md5.workspace = true39# std.sha140sha1.workspace = true41# std.sha256, std.sha51242sha2.workspace = true43# std.sha344sha3.workspace = true45# std.base6446base64.workspace = true47# std.parseJson48serde_json.workspace = true49# std.parseYaml, custom library fork is used for C++/golang compatibility50serde_yaml_with_quirks.workspace = true5152num-bigint = { workspace = true, optional = true }5354# regex55regex = { workspace = true, optional = true }56lru = { workspace = true, optional = true }57rustc-hash = { workspace = true, optional = true }5859[build-dependencies]60jrsonnet-parser.workspace = true61structdump = { workspace = true, features = ["derive"] }