From c970051306a7e52c1512d709c0bcf1f8976eba0d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 12 Aug 2023 18:24:27 +0000 Subject: [PATCH] fix(deps): update rust crate tokio to 1.31.0 --- server/Cargo.lock | 4 ++-- server/app/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/server/Cargo.lock b/server/Cargo.lock index cd87bf5..848cad8 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -1700,9 +1700,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.30.0" +version = "1.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd" +checksum = "40de3a2ba249dcb097e01be5e67a5ff53cf250397715a071a81543e8a832a920" dependencies = [ "backtrace", "bytes", diff --git a/server/app/Cargo.toml b/server/app/Cargo.toml index d2c9427..a06ecf1 100644 --- a/server/app/Cargo.toml +++ b/server/app/Cargo.toml @@ -10,7 +10,7 @@ infra_grpc = { path = "../infra/grpc" } infra_repository_impl = { path = "../infra/repository_impl" } anyhow = "1.0.72" -tokio = { version = "1.30.0", features = ["rt-multi-thread"] } +tokio = { version = "1.31.0", features = ["rt-multi-thread"] } tonic = { version = "0.9.2", features = ["gzip"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } tracing = "0.1.37"