diff --git a/Cargo.lock b/Cargo.lock index 38453b11fd6..9656469d8a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3851,14 +3851,13 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.26.0" +version = "1.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" +checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001" dependencies = [ "autocfg", "bytes", "libc", - "memchr", "mio", "num_cpus", "parking_lot 0.12.1", @@ -3870,13 +3869,13 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "1.8.2" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" +checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.4", ] [[package]] diff --git a/bin/oli/Cargo.toml b/bin/oli/Cargo.toml index e858b6f6aa7..4567442a27c 100644 --- a/bin/oli/Cargo.toml +++ b/bin/oli/Cargo.toml @@ -56,7 +56,7 @@ futures = "0.3" log = "0.4" opendal = { version = "0.30", path = "../../core" } serde = { version = "1", features = ["derive"] } -tokio = { version = "1.26", features = ["fs", "macros", "rt-multi-thread", "io-std"] } +tokio = { version = "1.27", features = ["fs", "macros", "rt-multi-thread", "io-std"] } toml = "0.7.3" url = "2.3.1" diff --git a/core/Cargo.toml b/core/Cargo.toml index b8665cb951d..17e6865b4f1 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -131,7 +131,7 @@ suppaftp = { version = "4.5", default-features = false, features = [ "async-rustls", ], optional = true } time = { version = "0.3", features = ["serde"] } -tokio = { version = "1.26", features = ["fs"] } +tokio = { version = "1.27", features = ["fs"] } tracing = { version = "0.1", optional = true } trust-dns-resolver = { version = "0.22", optional = true } ureq = { version = "2", default-features = false } @@ -151,7 +151,7 @@ pretty_assertions = "1" rand = "0.8" sha2 = "0.10" size = "0.4" -tokio = { version = "1.26", features = ["fs", "macros", "rt-multi-thread"] } +tokio = { version = "1.27", features = ["fs", "macros", "rt-multi-thread"] } tracing-opentelemetry = "0.17" tracing-subscriber = { version = "0.3", features = ["env-filter"] } wiremock = "0.5"