better-config-core 0.2.4

better-config is a library for managing environment variables in Rust applications, providing a more ergonomic and type-safe configuration management experience.
Documentation
1
2
3
4
5
6
7
8
mod error;
mod traits;
pub mod utils;

pub use error::Error;
pub use traits::AbstractConfig;
pub use utils::override_env::{merge_with_env, merge_with_env_uppercase};
pub use utils::*;