From 9304ca9af1251961bf3762735eaae873f1a2b35c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 5 Jul 2023 16:50:46 +0000 Subject: [PATCH] fix(deps): update rust crate async-trait to 0.1.71 --- server/Cargo.lock | 4 ++-- server/domain/Cargo.toml | 2 +- server/infra/grpc/Cargo.toml | 2 +- server/infra/repository_impl/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/server/Cargo.lock b/server/Cargo.lock index 7bd0a1b..0073900 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -51,9 +51,9 @@ checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" [[package]] name = "async-trait" -version = "0.1.70" +version = "0.1.71" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79fa67157abdfd688a259b6648808757db9347af834624f27ec646da976aee5d" +checksum = "a564d521dd56509c4c47480d00b80ee55f7e385ae48db5744c67ad50c92d2ebf" dependencies = [ "proc-macro2", "quote", diff --git a/server/domain/Cargo.toml b/server/domain/Cargo.toml index 2efddf1..dd22d7f 100644 --- a/server/domain/Cargo.toml +++ b/server/domain/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" [dependencies] anyhow = "1.0.71" -async-trait = "0.1.70" +async-trait = "0.1.71" diff --git a/server/infra/grpc/Cargo.toml b/server/infra/grpc/Cargo.toml index 31f5f71..ecfd389 100644 --- a/server/infra/grpc/Cargo.toml +++ b/server/infra/grpc/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" domain = { path = "../../domain" } anyhow = "1.0.71" -async-trait = "0.1.70" +async-trait = "0.1.71" log = "0.4.19" pbjson-types = "0.5.1" prost = "0.11.9" diff --git a/server/infra/repository_impl/Cargo.toml b/server/infra/repository_impl/Cargo.toml index 34564e2..e819880 100644 --- a/server/infra/repository_impl/Cargo.toml +++ b/server/infra/repository_impl/Cargo.toml @@ -8,6 +8,6 @@ domain = { path = "../../domain" } config = { path = "../../config" } anyhow = "1.0.71" -async-trait = "0.1.70" +async-trait = "0.1.71" chrono = "0.4.26" sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "mysql", "chrono"] }