optify 0.21.0

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 = "0.21.0"
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.14"
dunce = "1.0.5"
jsonschema = { version = "0.32.1" }
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.6.0"
rayon = "1.11.0"
regex = "1.11.1"
serde =  { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
unicase = "2.8.1"
walkdir = "2.5.0"

[dev-dependencies]
regex = "1.11.1"
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