This is an automated email from the ASF dual-hosted git repository.
asukaminato pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git
The following commit(s) were added to refs/heads/main by this push:
new a2a6332f9 chore(deps): bump tokio from 1.46.1 to 1.47.0 in /bin/ofs
(#6463)
a2a6332f9 is described below
commit a2a6332f9db1b1aeea4ebc63e5a9cd01885fa8a2
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sat Aug 2 14:50:17 2025 +0900
chore(deps): bump tokio from 1.46.1 to 1.47.0 in /bin/ofs (#6463)
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.46.1 to 1.47.0.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
-
[Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.46.1...tokio-1.47.0)
---
updated-dependencies:
- dependency-name: tokio
dependency-version: 1.47.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
---
bin/ofs/Cargo.lock | 24 +++++++++++++++++-------
bin/ofs/Cargo.toml | 2 +-
2 files changed, 18 insertions(+), 8 deletions(-)
diff --git a/bin/ofs/Cargo.lock b/bin/ofs/Cargo.lock
index 4a93b0030..ab63348fb 100644
--- a/bin/ofs/Cargo.lock
+++ b/bin/ofs/Cargo.lock
@@ -801,7 +801,7 @@ dependencies = [
"libc",
"percent-encoding",
"pin-project-lite",
- "socket2",
+ "socket2 0.5.9",
"tokio",
"tower-service",
"tracing",
@@ -1358,7 +1358,7 @@ dependencies = [
"quinn-udp",
"rustc-hash",
"rustls",
- "socket2",
+ "socket2 0.5.9",
"thiserror",
"tokio",
"tracing",
@@ -1395,7 +1395,7 @@ dependencies = [
"cfg_aliases",
"libc",
"once_cell",
- "socket2",
+ "socket2 0.5.9",
"tracing",
"windows-sys 0.59.0",
]
@@ -1822,6 +1822,16 @@ dependencies = [
"windows-sys 0.52.0",
]
+[[package]]
+name = "socket2"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
+dependencies = [
+ "libc",
+ "windows-sys 0.59.0",
+]
+
[[package]]
name = "stable_deref_trait"
version = "1.2.0"
@@ -1991,9 +2001,9 @@ checksum =
"1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
-version = "1.46.1"
+version = "1.47.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
+checksum = "43864ed400b6043a4757a25c7a64a8efde741aed79a056a2fb348a406701bb35"
dependencies = [
"backtrace",
"bytes",
@@ -2003,9 +2013,9 @@ dependencies = [
"pin-project-lite",
"signal-hook-registry",
"slab",
- "socket2",
+ "socket2 0.6.0",
"tokio-macros",
- "windows-sys 0.52.0",
+ "windows-sys 0.59.0",
]
[[package]]
diff --git a/bin/ofs/Cargo.toml b/bin/ofs/Cargo.toml
index 808087aa3..71b4855fe 100644
--- a/bin/ofs/Cargo.toml
+++ b/bin/ofs/Cargo.toml
@@ -35,7 +35,7 @@ clap = { version = "4.5.40", features = ["derive", "env"] }
log = { version = "0.4.22" }
logforth = { version = "0.26.1", default-features = false }
opendal = { version = "0.54.0", path = "../../core" }
-tokio = { version = "1.46.1", features = [
+tokio = { version = "1.47.0", features = [
"fs",
"macros",
"rt-multi-thread",