From 5d903fef76c4ea41b51bcabe0426833b291d5d6a Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Tue, 18 Mar 2025 09:47:29 -0700 Subject: [PATCH] build(dep): loosen tokio requirements Since this is a library, let the consumer dictate the version of tokio which works for them. The library should operate against the v1 tokio interface. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 63fa7944..eca3969d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ bip324 = { version = "0.6.0", default-features = false, features = [ "alloc", "tokio", ] } -tokio = { version = "1.37", default-features = false, features = [ +tokio = { version = "1", default-features = false, features = [ "rt-multi-thread", "sync", "time",