gust-stdlib 0.2.0

Standard library of reusable Gust state machines (circuit breaker, retry, saga, rate limiter, and more)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main() {
    for file in [
        "request_response.gu",
        "circuit_breaker.gu",
        "saga.gu",
        "retry.gu",
        "rate_limiter.gu",
        "health_check.gu",
        "engine_failure.gu",
    ] {
        println!("cargo:rerun-if-changed={}", file);
    }
}