From 49d1ede3f425aaeddee08905dc7c964066503b4c Mon Sep 17 00:00:00 2001 From: Matthias Geier Date: Sun, 20 Nov 2022 17:23:13 +0100 Subject: [PATCH] DOC: mention that ringbuf supports const generics --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0102457..348e5f4 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ to wait-free SPSC implementations: * [jack](https://crates.io/crates/jack) (FFI bindings for JACK, see `jack::Ringbuffer`) * [magnetic](https://crates.io/crates/magnetic) (see `magnetic::spsc` module) * [npnc](https://crates.io/crates/npnc) (see `npnc::bounded::spsc` module) -* [ringbuf](https://crates.io/crates/ringbuf) +* [ringbuf](https://crates.io/crates/ringbuf) (supports const generics and heap allocation) * [ringbuffer-spsc](https://crates.io/crates/ringbuffer-spsc) (using const generics) * [shmem-ipc](https://crates.io/crates/shmem-ipc) (see `shmem_ipc::sharedring` and `shmem_ipc::ringbuf` modules)