optify

Crates.iooptify
lib.rsoptify
version0.19.0
created_at2025-01-29 22:02:50.717316+00
updated_at2025-09-05 11:54:52.043678+00
descriptionSimplifies 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.
homepagehttps://github.com/juharris/optify/tree/main/rust/optify
repositoryhttps://github.com/juharris/optify/tree/main/rust/optify
max_upload_size
id1535622
size142,451
Justin D. Harris (juharris)

documentation

README

Optify in Rust

Crates.io docs.rs

The core implementation of Optify in Rust. 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.

See tests for examples and tests for different implementations of this format for managing options.

See the root README.md for more information and examples.

⚠️ Development in progress ⚠️
APIs are not final and may change, for example, names may change. This is just meant to be minimal to get started and help build Python and Ruby libraries.

How It Works

The config crate (library) is used to help combine configuration files.

Optionally, when working locally, there is support to watch for changes to the configuration files and folders using the notify-debouncer-full crate (library).

Testing

Run:

cargo test

Formatting

To automatically change code, run:

cargo fmt && cargo clippy --fix --allow-dirty --allow-staged

Publishing

cargo login
cargo publish
Commit count: 125

cargo fmt