From c39b364319add276f04391228fd8a97463006efb Mon Sep 17 00:00:00 2001 From: LongYinan Date: Sun, 7 Feb 2021 00:08:38 +0800 Subject: [PATCH] chore(napi): upgrade tokio --- napi/Cargo.toml | 2 +- test_module/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/napi/Cargo.toml b/napi/Cargo.toml index 43a629e8..491d573c 100644 --- a/napi/Cargo.toml +++ b/napi/Cargo.toml @@ -39,7 +39,7 @@ version = "0.3" [dependencies.tokio] features = ["rt", "rt-multi-thread", "sync"] optional = true -version = "1.1" +version = "1" [dependencies.once_cell] optional = true diff --git a/test_module/Cargo.toml b/test_module/Cargo.toml index 5b8a6d11..59889e7c 100644 --- a/test_module/Cargo.toml +++ b/test_module/Cargo.toml @@ -19,7 +19,7 @@ serde = "1" serde_bytes = "0.11" serde_derive = "1" serde_json = "1" -tokio = {version = "1.1", features = ["default", "fs"]} +tokio = {version = "1", features = ["default", "fs"]} [build-dependencies] napi-build = {path = "../build"}