diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2024-08-01 04:56:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-01 04:56:11 +0000 |
commit | 54a45c3c5b8a23704204fc5a6b6f589bb50800bc (patch) | |
tree | 89613b95106f5b50a590f59aea6dcb4822d61173 | |
parent | a1299686bb88ea696f5a62faf275d1029ddc595a (diff) |
Bump tokio from 1.37.0 to 1.39.2dependabot/cargo/tokio-1.39.2
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.37.0 to 1.39.2.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...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>
-rw-r--r-- | Cargo.lock | 28 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | cloudmqtt-bin/Cargo.toml | 2 | ||||
-rw-r--r-- | mqtt-format/Cargo.toml | 2 |
4 files changed, 12 insertions, 22 deletions
@@ -500,13 +500,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", "libc", "wasi", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -559,16 +560,6 @@ dependencies = [ ] [[package]] -name = "num_cpus" -version = "1.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" -dependencies = [ - "hermit-abi", - "libc", -] - -[[package]] name = "num_enum" version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -912,28 +903,27 @@ dependencies = [ [[package]] name = "tokio" -version = "1.37.0" +version = "1.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" +checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" dependencies = [ "backtrace", "bytes", "libc", "mio", - "num_cpus", "parking_lot", "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.2.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", @@ -28,7 +28,7 @@ mqtt-format = { version = "0.5.0", path = "mqtt-format", features = [ paste = "1.0.14" stable_deref_trait = "1.2.0" thiserror = "1.0.58" -tokio = { version = "1.37.0", features = ["macros", "full"] } +tokio = { version = "1.39.2", features = ["macros", "full"] } tokio-util = { version = "0.7.10", features = ["codec", "compat"] } tracing = "0.1.40" typed-builder = "0.18" diff --git a/cloudmqtt-bin/Cargo.toml b/cloudmqtt-bin/Cargo.toml index efc755b..241e17a 100644 --- a/cloudmqtt-bin/Cargo.toml +++ b/cloudmqtt-bin/Cargo.toml @@ -9,6 +9,6 @@ edition = "2021" clap = { version = "4.5.4", features = ["derive"] } cloudmqtt = { version = "0.5.0", path = ".." } futures = "0.3.30" -tokio = { version = "1.37.0", features = ["full"] } +tokio = { version = "1.39.2", features = ["full"] } tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } diff --git a/mqtt-format/Cargo.toml b/mqtt-format/Cargo.toml index 172bdc1..18167f5 100644 --- a/mqtt-format/Cargo.toml +++ b/mqtt-format/Cargo.toml @@ -32,4 +32,4 @@ yoke = { version = "0.7.0", features = [ [dev-dependencies] pretty_assertions = "1.3.0" -tokio = { version = "1.37.0", features = ["test-util", "macros"] } +tokio = { version = "1.39.2", features = ["test-util", "macros"] } |