teamy-figue 2.0.1

Type-safe CLI arguments, config files, and environment variables powered by Facet reflection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Layered configuration parsing.
//!
//! Each layer parses from a different source (CLI, environment, file) and outputs
//! a `LayerOutput` containing `ConfigValue` with provenance tracking.
//!
//! The layers are:
//! - `cli`: Command-line argument parsing
//! - `env`: Environment variable parsing
//! - `file`: Configuration file parsing

pub mod cli;
pub mod env;
pub mod file;