From 1905f01cb32b034a9a0011871c923d5142110644 Mon Sep 17 00:00:00 2001 From: Yuki Kishimoto Date: Fri, 25 Oct 2024 14:33:58 +0200 Subject: [PATCH] Set min `tokio` version to `v1.37` Previous versions not implement `Clone` for `sync::watch` channel. Signed-off-by: Yuki Kishimoto --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 920ff105f..59c6b8900 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ nwc = { version = "0.35", path = "./crates/nwc", default-features = false } once_cell = { version = "1.20", default-features = false } serde_json = { version = "1.0", default-features = false } thiserror = "1.0" -tokio = { version = "1", default-features = false } +tokio = { version = ">=1.37", default-features = false } tracing = { version = "0.1", default-features = false } tracing-subscriber = "0.3" uniffi = "=0.28.0" # v0.28.1 causes issues when checking MSRV