From 2e1bb877c60b87b24fc581d60fbf9aea49476d8f Mon Sep 17 00:00:00 2001 From: doryan Date: Sun, 10 Aug 2025 21:29:11 +0400 Subject: [PATCH] fix: rename feature --- src/structures/ring_buffer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/ring_buffer.rs b/src/structures/ring_buffer.rs index 72b9c6f..2af8c9f 100644 --- a/src/structures/ring_buffer.rs +++ b/src/structures/ring_buffer.rs @@ -10,7 +10,7 @@ use crate::{ SoftSerialWriter, }; -#[cfg(feature = "ring-buffer")] +#[cfg(feature = "ring-buf")] impl SoftSerialWriter> for HalfDuplexSerial

where P: PinOps + StaticPinOps, @@ -26,7 +26,7 @@ where } } -#[cfg(feature = "ring-buffer")] +#[cfg(feature = "ring-buf")] impl SoftSerialReader> for HalfDuplexSerial

where P: PinOps + StaticPinOps,