From 6dd31fd1624820bb1cfe1995e8f386dbcee044ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Apr 2023 05:02:41 +0000 Subject: Build(deps): Bump DeterminateSystems/update-flake-lock from 17 to 18 Bumps [DeterminateSystems/update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) from 17 to 18. - [Release notes](https://github.com/DeterminateSystems/update-flake-lock/releases) - [Commits](https://github.com/DeterminateSystems/update-flake-lock/compare/v17...v18) --- updated-dependencies: - dependency-name: DeterminateSystems/update-flake-lock dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/flake-update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3 From f844c091dfb4893bcf26a1ef52e751e43e3b08ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Apr 2023 05:04:39 +0000 Subject: Build(deps): Bump miette from 5.6.0 to 5.7.0 Bumps [miette](https://github.com/zkat/miette) from 5.6.0 to 5.7.0. - [Release notes](https://github.com/zkat/miette/releases) - [Changelog](https://github.com/zkat/miette/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/miette/compare/miette-derive-v5.6.0...miette-derive-v5.7.0) --- updated-dependencies: - dependency-name: miette dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 32 +++++++++++++++++++++----------- mqtt-tester/Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4a968a6..7c1c036 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -75,7 +75,7 @@ checksum = "86ea188f25f0255d8f92797797c97ebf5631fa88178beb1a46fdf5622c9a00e4" dependencies = [ "proc-macro2", "quote", - "syn 2.0.2", + "syn 2.0.13", ] [[package]] @@ -99,6 +99,15 @@ dependencies = [ "rustc-demangle", ] +[[package]] +name = "backtrace-ext" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50" +dependencies = [ + "backtrace", +] + [[package]] name = "bitflags" version = "1.3.2" @@ -471,11 +480,12 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" [[package]] name = "miette" -version = "5.6.0" +version = "5.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07749fb52853e739208049fb513287c6f448de9103dfa78b05ae01f2fc5809bb" +checksum = "7abdc09c381c9336b9f2e9bd6067a9a5290d20e2d2e2296f275456121c33ae89" dependencies = [ "backtrace", + "backtrace-ext", "is-terminal", "miette-derive", "once_cell", @@ -491,13 +501,13 @@ dependencies = [ [[package]] name = "miette-derive" -version = "5.6.0" +version = "5.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a07ad93a80d1b92bb44cb42d7c49b49c9aab1778befefad49cceb5e4c5bf460" +checksum = "8842972f23939443013dfd3720f46772b743e86f1a81d120d4b6fb090f87de1c" dependencies = [ "proc-macro2", "quote", - "syn 1.0.107", + "syn 2.0.13", ] [[package]] @@ -707,9 +717,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.52" +version = "1.0.55" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d0e1ae9e836cc3beddd63db0df682593d7e2d3d891ae8c9083d2113e1744224" +checksum = "1d0dd4be24fcdcfeaa12a432d588dc59bbad6cad3510c67e74a2b6b2fc950564" dependencies = [ "unicode-ident", ] @@ -907,9 +917,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.2" +version = "2.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59d3276aee1fa0c33612917969b5172b5be2db051232a6e4826f1a1a9191b045" +checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec" dependencies = [ "proc-macro2", "quote", @@ -986,7 +996,7 @@ checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.2", + "syn 2.0.13", ] [[package]] diff --git a/mqtt-tester/Cargo.toml b/mqtt-tester/Cargo.toml index ff02b5e..71df087 100644 --- a/mqtt-tester/Cargo.toml +++ b/mqtt-tester/Cargo.toml @@ -11,7 +11,7 @@ async-trait = "0.1.67" bytes = "1.4.0" clap = { version = "4.1.11", features = ["derive"] } futures = "0.3" -miette = { version = "5.6.0", features = ["fancy"] } +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" -- cgit v1.2.3 From 3bfe74db8189a8bb779d0e1b5ffa71ff407d4ecd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Apr 2023 05:04:58 +0000 Subject: 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] --- Cargo.lock | 15 +++++++-------- Cargo.toml | 2 +- mqtt-format/Cargo.toml | 2 +- mqtt-tester/Cargo.toml | 2 +- 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"] } -- cgit v1.2.3