| Crates.io | async-bulkhead |
| lib.rs | async-bulkhead |
| version | 0.1.0 |
| created_at | 2022-05-22 03:42:00.914296+00 |
| updated_at | 2022-05-22 03:42:00.914296+00 |
| description | An async semaphore-based bulkhead implementation |
| homepage | |
| repository | https://github.com/nnazo/async-bulkhead |
| max_upload_size | |
| id | 591026 |
| size | 27,267 |
An async semaphore-based Bulkhead (client-side resiliency pattern) implementation.
Add one of the following to your Cargo.toml depending on your async runtime:
If you are using Tokio, the tokio feature is enabled by default so you
can specify the dependency as follows:
[dependencies]
async-bulkhead = "0.1"
For async-std or smol, use the following:
[dependencies]
async-bulkhead = { version = "0.1", default-features = false, features = ["rt-async-std"] }
[dependencies]
async-bulkhead = { version = "0.1", default-features = false, features = ["rt-smol"] }
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.