Envar
Envar is a simple library to manage environment variables in Rust. It provides a derive macro to automatically parse environment variables into a struct at compile time. The advantage of this approach is that it allows you to catch errors at compile time, rather than getting a runtime error when trying to access an environment variable that doesn't exist.
Usage
use Envar;