https://github.com/sam0x17/env_vars_explorer
https://github.com/sam0x17/env_vars_explorer
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sam0x17/env_vars_explorer
- Owner: sam0x17
- Created: 2023-06-13T03:28:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-13T03:29:00.000Z (over 2 years ago)
- Last Synced: 2025-03-29T15:47:57.826Z (10 months ago)
- Language: Rust
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!();
```