summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-04-03 05:04:58 +0000
committerGitHub <noreply@github.com>2023-04-03 05:04:58 +0000
commit3bfe74db8189a8bb779d0e1b5ffa71ff407d4ecd (patch)
treebe4591c000abc099cbaae420f333ae97e501c155
parent9cd33d1e486cfbf0a9d43ad8a264bee002a69438 (diff)
Build(deps): Bump tokio from 1.26.0 to 1.27.0
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.26.0 to 1.27.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.26.0...tokio-1.27.0) --- 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.lock15
-rw-r--r--Cargo.toml2
-rw-r--r--mqtt-format/Cargo.toml2
-rw-r--r--mqtt-tester/Cargo.toml2
4 files changed, 10 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 4a968a6..f38734a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -840,9 +840,9 @@ checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043"
[[package]]
name = "socket2"
-version = "0.4.7"
+version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
+checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
dependencies = [
"libc",
"winapi",
@@ -1000,14 +1000,13 @@ dependencies = [
[[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",
"pin-project-lite",
@@ -1019,13 +1018,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.107",
+ "syn 2.0.2",
]
[[package]]
diff --git a/Cargo.toml b/Cargo.toml
index 619da83..e304127 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -38,7 +38,7 @@ futures = "0.3.27"
mqtt-format = { version = "0.5.0", path = "mqtt-format", features = ["yoke"] }
nom = { version = "7.1.3" }
thiserror = "1.0.40"
-tokio = { version = "1.26.0", default-features = false, features = [
+tokio = { version = "1.27.0", default-features = false, features = [
"net",
"time",
"sync",
diff --git a/mqtt-format/Cargo.toml b/mqtt-format/Cargo.toml
index 1e25ac6..754e5fb 100644
--- a/mqtt-format/Cargo.toml
+++ b/mqtt-format/Cargo.toml
@@ -23,4 +23,4 @@ yoke = { version = "0.7.0", features = ["derive"], optional = true }
[dev-dependencies]
pretty_assertions = "1.3.0"
-tokio = { version = "1.26.0", features = ["test-util", "macros"] }
+tokio = { version = "1.27.0", features = ["test-util", "macros"] }
diff --git a/mqtt-tester/Cargo.toml b/mqtt-tester/Cargo.toml
index ff02b5e..0bd6cac 100644
--- a/mqtt-tester/Cargo.toml
+++ b/mqtt-tester/Cargo.toml
@@ -15,7 +15,7 @@ miette = { version = "5.6.0", features = ["fancy"] }
mqtt-format = { path = "../mqtt-format", version = "0.5.0" }
nom = { version = "7.1.3" }
textwrap = "0.16.0"
-tokio = { version = "1.26", features = ["macros", "process", "rt", "rt-multi-thread", "io-util", "time"] }
+tokio = { version = "1.27", features = ["macros", "process", "rt", "rt-multi-thread", "io-util", "time"] }
static_assertions = "1.1.0"
tracing = { version = "0.1", features = ["attributes"] }
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }