From 65ab61a1df4b420ac208d696f3641d1034ca804c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 22:33:53 +0000 Subject: [PATCH] build(deps): bump tokio from 1.41.0 to 1.41.1 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.41.0 to 1.41.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.0...tokio-1.41.1) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- crates/rsjudge-amqp/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 53a5be0..1e79fbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1889,9 +1889,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.41.0" +version = "1.41.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb" +checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33" dependencies = [ "backtrace", "bytes", diff --git a/Cargo.toml b/Cargo.toml index d4893c6..69f4615 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ log = "0.4.22" rsjudge-traits = { version = "0.1.0", path = "crates/rsjudge-traits" } rsjudge-utils = { version = "0.1.0", path = "crates/rsjudge-utils" } serde = { version = "1.0.214", features = ["derive"] } -tokio = "1.41.0" +tokio = "1.41.1" [package] name = "rsjudge" diff --git a/crates/rsjudge-amqp/Cargo.toml b/crates/rsjudge-amqp/Cargo.toml index c81ff9a..569f20c 100644 --- a/crates/rsjudge-amqp/Cargo.toml +++ b/crates/rsjudge-amqp/Cargo.toml @@ -12,7 +12,7 @@ rust-version.workspace = true [dependencies] amqprs = { version = "2.1.0", features = ["urispec"] } thiserror = "2.0.3" -tokio = "1.41.0" +tokio = "1.41.1" rsjudge-traits.workspace = true serde = { workspace = true, optional = true }