optify 1.3.2

Simplifies getting the right configuration options for a process using pre-loaded configurations from files (JSON, YAML, etc.) to manage options for experiments or flights. This library is mainly made to support building implementations for other languages such as Node.js, Python, and Ruby. It is not meant to be consumed directly yet.
Documentation
[package]
name = "optify"
version = "1.3.2"
edition = "2021"
build = "build.rs"

description = "Simplifies getting the right configuration options for a process using pre-loaded configurations from files (JSON, YAML, etc.) to manage options for experiments or flights. This library is mainly made to support building implementations for other languages such as Node.js, Python, and Ruby. It is not meant to be consumed directly yet."
homepage = "https://github.com/juharris/optify/tree/main/rust/optify"
license = "MIT"
readme = "README.md"
repository = "https://github.com/juharris/optify/tree/main/rust/optify"

categories = ["config"]
keywords = ["configuration", "options"]

exclude = [
    "tests/*",
]

[dependencies]
config = "0.15.23"
cow-utils = "0.1.3"
dunce = "1.0.5"
# HTTP/file schema resolution (`resolve-http`, `resolve-file`) requires a TLS backend.
# `tls-ring` fails to cross-compile for aarch64; the default `tls-aws-lc-rs` needs cmake/lld unavailable in CI Docker containers.
# All current schema `$ref` are internal (`#/definitions/...`), so resolution features are disabled for now.
jsonschema = { version = "0.46.5", default-features = false }
liquid = "0.26.11"
notify = "8.2.0"
# For fetching JSON schema files from the web, but it requires OpenSSL, which is tricky to install in CI environments in Docker containers.
# Add `openssl-sys = { version = "*", features = ["vendored"] }`, helps a bit, but requires Perl which is also tricky to install.
# reqwest = { version = "*", features = ["rustls-tls"] }
notify-debouncer-full = "0.7.0"
rayon = "1.12.0"
regex = "1.12.3"
serde =  { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
unicase = "2.9.0"
walkdir = "2.5.0"

[dev-dependencies]
regex = "1.12.3"
criterion = "0.5.1"
tempfile = "3"

[[bench]]
name = "caching_benchmark"
harness = false

[[bench]]
name = "get_all_options_benchmark"
harness = false

[[bench]]
name = "get_options_benchmark"
harness = false

[[bench]]
name = "loading_benchmark"
harness = false