Byron Wasti

Results 4 issues of Byron Wasti

It seems like there are a number of outstanding pull-requests with nice features. Would it be possible to get an additional maintainer for this crate so that new features can...

Currently Balter has bare-minimum testing to verify that everything works together. However, this is limited in actually detecting flaws in the algorithms or control loops. Realistically this is going to...

Currently, `#[transaction]` can only be used on async functions which return a `Result`. This let's Balter keep track of the error-rate. ```rust #[transaction] async fn foo() -> Result { }...

enhancement

Right now, the `#[scenario]` macro only works on functions which take no arguments and return no values. ```rust #[scenario] async fn scenario_a() { } ``` Allowing the user to use...

enhancement