4 releases

Uses old Rust 2015

0.1.3 Oct 4, 2018
0.1.2 Oct 1, 2018
0.1.1 Oct 1, 2018
0.1.0 Oct 1, 2018

#2256 in Rust patterns

Download history 125/week @ 2023-11-30 209/week @ 2023-12-07 196/week @ 2023-12-14 86/week @ 2023-12-21 65/week @ 2023-12-28 142/week @ 2024-01-04 208/week @ 2024-01-11 252/week @ 2024-01-18 111/week @ 2024-01-25 112/week @ 2024-02-01 161/week @ 2024-02-08 114/week @ 2024-02-15 156/week @ 2024-02-22 71/week @ 2024-02-29 128/week @ 2024-03-07 183/week @ 2024-03-14

554 downloads per month

MIT/Apache

9KB
148 lines

Envoy

Envoy is a small library providing more convenient abstractions for manipulating environment variables than the standard library. In particular, Envoy has APIs for manipulating PATH-like variables.

Example

let path = envoy::path();           // get the `PATH`/`Path` variable

let updated = path.split()
    .remove("/usr/local/bin")       // remove /usr/local/bin
    .prefix("/home/dherman/.bin");  // add /home/dherman/.bin to the front

envoy::set_path(updated.join().unwrap());

License

Licensed under either of

at your option.

Code of Conduct

Contribution to Envoy is organized under the terms of the Contributor Covenant Code of Conduct. The maintainer of Envoy, Dave Herman, personally promises to work actively to uphold that code of conduct. We aim to foster a community that is welcoming, inclusive, empathetic, and kind. If you share those goals and want to have fun hacking environment variables, we invite you to join us!

No runtime deps