From f1cb92c86ef839d070f8fd57ff11bb212117e7e0 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Wed, 23 Oct 2024 22:47:17 +0800 Subject: [PATCH] docs: Backon is `adaptable` --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2425db3..f90960b 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Make **retry** like a built-in feature provided by Rust. - **Flexible**: Supports both blocking and async functions. - **Powerful**: Allows control over retry behavior such as [`when`](https://docs.rs/backon/latest/backon/struct.Retry.html#method.when) and [`notify`](https://docs.rs/backon/latest/backon/struct.Retry.html#method.notify). - **Customizable**: Supports custom retry strategies like [exponential](https://docs.rs/backon/latest/backon/struct.ExponentialBuilder.html), [constant](https://docs.rs/backon/latest/backon/struct.ConstantBuilder.html), etc. +- **Adaptable**: Works on all platforms supported by Rust, including both `wasm` and `no-std`. ---