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
1
2
3
4
5
6
7
8
9
10
11
12
pub mod constraints;
pub(crate) mod get_options_preferences;
pub(crate) mod provider_impl;
pub(crate) mod provider_trait;
pub(crate) mod watcher;
pub(crate) mod watcher_options;

pub use get_options_preferences::*;
pub use provider_impl::*;
pub use provider_trait::*;
pub use watcher::*;
pub use watcher_options::*;