From ba7ab8a9987c1f4d4b8a39872c4f546a6392dcb4 Mon Sep 17 00:00:00 2001 From: SabrinaJewson Date: Sun, 26 Mar 2023 14:57:35 +0100 Subject: [PATCH] Mention that crossbeam-channel as the same algorithm as std --- data/crates.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/crates.json b/data/crates.json index 527cdc3..701a8ac 100644 --- a/data/crates.json +++ b/data/crates.json @@ -1054,7 +1054,7 @@ "recommendations": [ { "name": "crossbeam-channel", - "notes": "The absolute fastest channel implementation available. Implements Go-like 'select' feature." + "notes": "The same channel algorithm as in the standard library but with a more powerful API, offering a Go-like 'select' feature." }, { "name": "flume", "notes": "Smaller and simpler than crossbeam-channel and almost as fast"