From 649e731b5e72e4aaf035dc3d3163650a37386e1c Mon Sep 17 00:00:00 2001 From: Sabrina Jewson Date: Mon, 18 Nov 2024 09:12:09 +0000 Subject: [PATCH] Mention that crossbeam-channel as the same algorithm as std (#76) --- 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"