globalenv 0.3.0

Globally sets environment variables (and not just for the current process)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# globalenv

[![Current Crates.io Version](https://img.shields.io/crates/v/globalenv.svg)](https://crates.io/crates/globalenv)
[![Downloads badge](https://img.shields.io/crates/d/globalenv.svg)](https://crates.io/crates/globalenv)

Globally set or unset environment variables (and not just for the current process).
Example:
```rust
use globalenv::set_var;
set_var("ENVTEST", "TESTVALUE").unwrap();
unset_var("ENVTEST").unwrap();
```

License: GPL-3.0