Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 633 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 633 Bytes

envopt

Crates.io Documentation License

Parse environment variables by defining a struct.

Example

use envopt::EnvOpt;

#[derive(EnvOpt)]
pub enum EnvOpts {
    #[envopt(name = "FOO")]
    Foo,
    #[envopt(name = "BAR", default = "default-bar")]
    Bar,
}

pub fn main() {
    EnvOpts::validate_or_exit();

    println!("FOO: {}", EnvOpts::Foo.value_or_exit());
    println!("BAR: {}", EnvOpts::Bar.value_or_exit());
}