envful 0.5.10

A tool to verify the presence of environment variables before running a process
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod checker;
pub mod runner;

#[derive(Debug)]
pub struct EnvVarDeclaration {
    pub name: String,
    pub optional: bool,
    pub default: Option<String>,
    pub description: Option<String>,
}

pub struct EnvVar {
    pub name: String,
    pub value: Option<String>,
}