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
//! Error types produced by the configuration loader.

mod aggregate;
mod constructors;
mod conversions;
mod helpers;
mod types;

pub use helpers::is_display_request;
pub use types::OrthoError;

pub(crate) use aggregate::AggregatedErrors;

#[cfg(test)]
mod tests;