From 7fe5a30424dd970aab4e62c5daecd54f81ab28c7 Mon Sep 17 00:00:00 2001 From: Lloyd Fournier Date: Tue, 16 Feb 2021 16:31:55 +1100 Subject: [PATCH] Don't fix tokio minor version This is also what they give as an example in their docs: https://docs.rs/tokio/1.2.0/tokio/ --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5abcc0f0..798aa871 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ tiny-bip39 = { version = "^0.8", optional = true } # Platform-specific dependencies [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -tokio = { version = "1.0", features = ["rt"] } +tokio = { version = "1", features = ["rt"] } [target.'cfg(target_arch = "wasm32")'.dependencies] async-trait = "0.1"