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
13
14
pub(crate) mod builder_impl;
pub(crate) mod builder_options;
pub(crate) mod builder_trait;
mod extract_configurable_string_files_from_config;
mod extract_files_from_config;
mod get_canonical_feature_name;
mod get_supported_extensions;
pub(crate) mod loading_result;
pub(crate) mod watcher_builder;

pub use builder_impl::*;
pub use builder_options::*;
pub use builder_trait::*;
pub use watcher_builder::*;