mirror of
https://github.com/threefoldtech/mycelium.git
synced 2026-03-29 07:39:51 +00:00
Bump tokio from 1.38.1 to 1.39.2
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.38.1 to 1.39.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.38.1...tokio-1.39.2) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
committed by
Lee Smet
parent
49cd8e03e5
commit
d4ec56977c
34
Cargo.lock
generated
34
Cargo.lock
generated
@@ -870,9 +870,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "hermit-abi"
|
||||
version = "0.3.4"
|
||||
version = "0.3.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f"
|
||||
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
||||
|
||||
[[package]]
|
||||
name = "hex"
|
||||
@@ -1044,7 +1044,7 @@ version = "0.4.12"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
|
||||
dependencies = [
|
||||
"hermit-abi 0.3.4",
|
||||
"hermit-abi 0.3.9",
|
||||
"libc",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
@@ -1206,13 +1206,14 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "mio"
|
||||
version = "0.8.11"
|
||||
version = "1.0.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
||||
checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4"
|
||||
dependencies = [
|
||||
"hermit-abi 0.3.9",
|
||||
"libc",
|
||||
"wasi",
|
||||
"windows-sys 0.48.0",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -1462,16 +1463,6 @@ dependencies = [
|
||||
"autocfg",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num_cpus"
|
||||
version = "1.16.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
||||
dependencies = [
|
||||
"hermit-abi 0.3.4",
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "object"
|
||||
version = "0.32.2"
|
||||
@@ -2505,27 +2496,26 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
||||
|
||||
[[package]]
|
||||
name = "tokio"
|
||||
version = "1.38.1"
|
||||
version = "1.39.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "eb2caba9f80616f438e09748d5acda951967e1ea58508ef53d9c6402485a46df"
|
||||
checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1"
|
||||
dependencies = [
|
||||
"backtrace",
|
||||
"bytes",
|
||||
"libc",
|
||||
"mio",
|
||||
"num_cpus",
|
||||
"pin-project-lite",
|
||||
"signal-hook-registry",
|
||||
"socket2",
|
||||
"tokio-macros",
|
||||
"windows-sys 0.48.0",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "tokio-macros"
|
||||
version = "2.3.0"
|
||||
version = "2.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a"
|
||||
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
||||
@@ -7,7 +7,7 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
mycelium = { path = "../mycelium", features = ["vendored-openssl"] }
|
||||
tokio = { version = "1.38.1", features = ["signal", "rt-multi-thread"] }
|
||||
tokio = { version = "1.39.2", features = ["signal", "rt-multi-thread"] }
|
||||
thiserror = "1.0.63"
|
||||
tracing = { version = "0.1.40", features = ["release_max_level_debug"] }
|
||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
||||
|
||||
@@ -18,7 +18,7 @@ axum = { version = "0.7.5", default-features = false, features = [
|
||||
] }
|
||||
base64 = "0.22.1"
|
||||
tracing = "0.1.40"
|
||||
tokio = { version = "1.38.1", default-features = false, features = [
|
||||
tokio = { version = "1.39.2", default-features = false, features = [
|
||||
"net",
|
||||
"rt",
|
||||
] }
|
||||
|
||||
@@ -16,7 +16,7 @@ serde_json = "1.0.117"
|
||||
base64 = "0.22.1"
|
||||
prettytable-rs = "0.10.0"
|
||||
tracing = "0.1.40"
|
||||
tokio = { version = "1.38.1", default-features = false, features = [
|
||||
tokio = { version = "1.39.2", default-features = false, features = [
|
||||
"net",
|
||||
"rt",
|
||||
"fs",
|
||||
|
||||
@@ -18,7 +18,7 @@ mycelium = { path = "../mycelium", default-features = false }
|
||||
prometheus = { version = "0.13.4", default-features = false, optional = true, features = [
|
||||
"process",
|
||||
] }
|
||||
tokio = { version = "1.38.1", default-features = false, optional = true, features = [
|
||||
tokio = { version = "1.39.2", default-features = false, optional = true, features = [
|
||||
"net",
|
||||
"rt",
|
||||
] }
|
||||
|
||||
@@ -11,7 +11,7 @@ private-network = ["dep:openssl", "dep:tokio-openssl"]
|
||||
vendored-openssl = ["openssl/vendored"]
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.38.1", features = [
|
||||
tokio = { version = "1.39.2", features = [
|
||||
"io-util",
|
||||
"fs",
|
||||
"macros",
|
||||
|
||||
Reference in New Issue
Block a user