1 unstable release
0.1.0 | Dec 25, 2020 |
---|
#1083 in Procedural macros
12KB
264 lines
everyday_macros
This crate contains all the procedural macros you might use in your everyday life while coding. Things like a thread sleep timer or a retry on error.
Getting Started
To a thread sleep timer to the prologue of your function. It is uses std::thread::sleep
for default functions and tokio::time::sleep
for async. It also has the ability to add a jitter with a range of [0, N).
#[wait_for(seconds=3)]
fn my_func_to_sleep(args: any_amount){
...
}
#[wait_for(seconds=3, jitter)]
fn my_func_to_sleep(args: any_amount){
...
}
To add a harness around your function add the follow above it. Currently does not work on async!
#[retry(times=3)]
fn my_func_that_can_fail(args: any_amount) -> Result<(), Err>{
...
}
Running the tests
Just run
git clone https://github.com/P3GLEG/everyday_macros && cd everyday_macros
cargo test -- --color always --nocapture
Authors
- Paul Ganea - Initial work - pegleg
License
This project is licensed under the Apache 2.0 License - see the LICENSE file for details
Dependencies
~3.5–5MB
~88K SLoC