[package] name = "rssafecircuit" version = "0.1.0" authors = ["fadedreams7 "] edition = "2021" keywords = ["resilience", "fault_tolerance", "circuit_breaker"] categories = ["no-std"] license-file = "LICENSE" description = "This Rust library implements a Circuit Breaker pattern with asynchronous support using Tokio, managing failure states and recovery strategies." documentation = "https://github.com/fadedreams/rssafecircuit" homepage = "https://github.com/fadedreams/rssafecircuit" repository = "https://github.com/fadedreams/rssafecircuit" [dependencies] tokio = { version = "1", features = ["full"] } rand = "0.8" [lib] name = "rssafecircuit" path = "src/lib.rs"