typed-env 0.3.0

Describing the requirements of environment variables in a type-safe and ergonomic way
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod core;
mod error;
mod error_reason;
mod list_envar;
mod special_constants;

pub use core::*;
pub use error::*;
pub use error_reason::*;
pub use list_envar::*;

#[cfg(test)]
mod tests;