Add this to your Cargo.toml:
toml
[dependenices]
env_plus = "0.1.2"
// This is a comment!
SECRET=YOUR_SECRET
```rust use env_plus::EnvLoader;
fn main() { EnvLoader::new() .activate();
let secret = std::env::var("SECRET").unwrap();
assert_eq!(secret, String::from("YOUR_SECRET"));
} ```
```
SECRET==YOUR_SECRET ```
```rust use env_plus::EnvLoader;
fn main() { std::env::setvar("SECRET", "MYSECRET");
EnvLoader::new()
.change_file(String::from("./special_file.extension"))
.change_delimiter(String::from("=="))
.change_comment(String::from("##"))
.overwrite_envs(true)
.activate();
let secret = std::env::var("SECRET").unwrap();
// SECRET has been overwritten from MY_SECRET to YOUR_SECRET
assert_eq!(secret, String::from("YOUR_SECRET"));
} ```