ortho_config 0.9.0

A configuration management library for Rust, inspired by esbuild.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Helpers for reading configuration files into Figment.

mod error;
mod extends;
mod helpers;
mod loader;
mod parser;
mod path;
#[cfg(feature = "yaml")]
mod yaml;

pub use loader::{FileLayerChain, load_config_file, load_config_file_as_chain};
pub use path::canonicalise;
#[cfg(feature = "yaml")]
pub use yaml::SaphyrYaml;

#[cfg(test)]
mod tests;