| Crates.io | macro_keeper |
| lib.rs | macro_keeper |
| version | 0.0.1 |
| created_at | 2025-07-10 17:46:41.00676+00 |
| updated_at | 2025-07-10 17:46:41.00676+00 |
| description | A lightweight macro toolkit for generating statically typed configs and utilities |
| homepage | |
| repository | https://github.com/envkeeper/macro_keeper |
| max_upload_size | |
| id | 1746850 |
| size | 26,342 |
A lightweight macro toolkit for generating statically typed configs and utilities.
Warning: This crate is still in early development and only includes one macro at the moment. More are coming soon!
config_generator! – A macro to define static, thread-safe config structs with global access.config_generator!(
AppConfig,
CONFIG,
[
(log_level, LogLevel, LogLevel::Info),
(environment, String, "production".to_string())
]
);