From 177820f3c3ce892242b1d98cc92866141f544a0a Mon Sep 17 00:00:00 2001 From: kjuulh Date: Tue, 1 Jul 2025 16:08:33 +0200 Subject: [PATCH] docs: clarify usage --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index df7028f..25bd8c1 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,12 @@ Manage concurrent tasks with optional limits, cancellation, and first-error prop Inpired by golang (errgroups) +## Disclaimer + +The library is still new, and as such the API is subject to change, I don't expect changes to the add and wait functions, but the rest may change. I might also move to custom error types, and or removing the tokio_utils entirely to slim down the package. It shouldn't affect the user too much however. + +The crate is in production, and has seen extensive use + ## Features - **Unlimited or bounded concurrency** via `with_limit(usize)`.