dotenvor 0.2.0

Small, fast `.env` parser and loader for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use dotenvor::load;

#[load(path = "tests/fixtures/macro-basic.env")]
fn load_ok() -> Result<(), dotenvor::Error> {
    Ok(())
}

fn main() {
    let _ = unsafe { load_ok() };
}