From 98da84482dd885b86b9969222826abe9178f2946 Mon Sep 17 00:00:00 2001 From: sinui0 <65924192+sinui0@users.noreply.github.com> Date: Sat, 10 May 2025 16:26:44 +0200 Subject: [PATCH] fix(serio): enable futures-channel/sink --- serio/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serio/Cargo.toml b/serio/Cargo.toml index 99e4c16..da52459 100644 --- a/serio/Cargo.toml +++ b/serio/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["io", "async", "futures", "serde"] [features] default = ["compat", "channel", "codec", "bincode"] compat = ["dep:futures-sink"] -channel = ["dep:futures-channel"] +channel = ["dep:futures-sink", "dep:futures-channel", "futures-channel/sink"] codec = ["dep:tokio-util", "dep:futures-io"] bincode = ["dep:bincode"]