From 5a85c6b2a59fa3d34b9853ddbecbdaf9bed6d9b6 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Fri, 21 Jul 2023 07:08:33 +0000
Subject: [PATCH] fix(deps): update rust crate async-trait to 0.1.72

---
 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 51ed22a..350d948 100644
--- a/server/Cargo.lock
+++ b/server/Cargo.lock
@@ -51,9 +51,9 @@ checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
 
 [[package]]
 name = "async-trait"
-version = "0.1.71"
+version = "0.1.72"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a564d521dd56509c4c47480d00b80ee55f7e385ae48db5744c67ad50c92d2ebf"
+checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09"
 dependencies = [
  "proc-macro2",
  "quote",
diff --git a/server/domain/Cargo.toml b/server/domain/Cargo.toml
index c5f6a46..3a3587b 100644
--- a/server/domain/Cargo.toml
+++ b/server/domain/Cargo.toml
@@ -5,4 +5,4 @@ edition = "2021"
 
 [dependencies]
 anyhow = "1.0.72"
-async-trait = "0.1.71"
+async-trait = "0.1.72"
diff --git a/server/infra/grpc/Cargo.toml b/server/infra/grpc/Cargo.toml
index 14c3bf2..5c72742 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.72"
-async-trait = "0.1.71"
+async-trait = "0.1.72"
 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 805d4ee..9c4d571 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.72"
-async-trait = "0.1.71"
+async-trait = "0.1.72"
 chrono = "0.4.26"
 sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "mysql", "chrono"] }