An open API service indexing awesome lists of open source software.

https://github.com/sam0x17/env_vars_explorer


https://github.com/sam0x17/env_vars_explorer

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

# env_vars_explorer

This crate provides a simple macro that can be used to explore what environment variables are
available at compile-time in your rust project.

Simply run `env_vars_explorer::explore!` anywhere and all environment variables will be printed
from the proc macro. This is useful to discover what environment variables are available at
compile-time v.s. at runtime.

```rust
env_vars_explorer::explore!();
```