summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/flake-update.yml2
-rw-r--r--Cargo.lock15
-rw-r--r--Cargo.toml2
-rw-r--r--mqtt-format/Cargo.toml2
-rw-r--r--mqtt-tester/Cargo.toml2
5 files changed, 11 insertions, 12 deletions
diff --git a/.github/workflows/flake-update.yml b/.github/workflows/flake-update.yml
index 0e5637c..ca7d192 100644
--- a/.github/workflows/flake-update.yml
+++ b/.github/workflows/flake-update.yml
@@ -19,7 +19,7 @@ jobs:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Update flake.lock
- uses: DeterminateSystems/update-flake-lock@v17
+ uses: DeterminateSystems/update-flake-lock@v18
with:
pr-title: "Update flake.lock" # Title of PR to be created
inputs: nixpkgs
diff --git a/Cargo.lock b/Cargo.lock
index 7c1c036..6f66120 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -850,9 +850,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",
@@ -1010,14 +1010,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",
@@ -1029,13 +1028,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 71df087..0fc1242 100644
--- a/mqtt-tester/Cargo.toml
+++ b/mqtt-tester/Cargo.toml
@@ -15,7 +15,7 @@ miette = { version = "5.7.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"] }