From ce99c0b850927bbafdab0a17076f7187870922e8 Mon Sep 17 00:00:00 2001 From: Dominik Werder Date: Thu, 31 Jul 2025 15:26:52 +0200 Subject: [PATCH] Fix dep use --- Cargo.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 862220b..ef8e90c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,14 +2,15 @@ name = "daqbuf-channeltools" version = "0.0.1" authors = ["Dominik Werder "] -edition = "2021" +license = "GPL-3.0-only" +edition = "2024" [lib] doctest = false [dependencies] futures-util = "0.3.31" -async-channel = "2.3.1" +async-channel = "2.5.0" autoerr = "0.0" pin-project-lite = "0.2.16" -tokio = { version = "1", default-features = false } +tokio = { version = "1", default-features = false, features = ["rt"] }