From 58e463021b78155969809bcc2e8745382d00eb57 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 05:21:04 +0000 Subject: [PATCH] build(deps): bump tokio from 1.39.2 to 1.40.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.39.2 to 1.40.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.2...tokio-1.40.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- server/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 666f53b..a2a1c59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1218,9 +1218,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.39.2" +version = "1.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" +checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" dependencies = [ "backtrace", "bytes", diff --git a/server/Cargo.toml b/server/Cargo.toml index f2bd838..98484f9 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -12,7 +12,7 @@ handlers = { path = "../handlers" } axum = "0.7.4" chrono = "0.4.32" clap = { version = "4.0", features = ["derive"] } -tokio = { version = "1.35.1", features = ["full"] } +tokio = { version = "1.40.0", features = ["full"] } tower-http = { version = "0.5.1", features = ["cors", "trace"] } tracing = "0.1.40" tracing-subscriber = "0.3.18"