From 5fae1607de5fcb832da24ab87d09a7c202c61e36 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 4 Jul 2023 18:45:00 +0000 Subject: [PATCH] fix(deps): update rust crate async-trait to 0.1.70 --- 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 7ad3c87..7bd0a1b 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -51,9 +51,9 @@ checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" [[package]] name = "async-trait" -version = "0.1.69" +version = "0.1.70" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b2d0f03b3640e3a630367e40c468cb7f309529c708ed1d88597047b0e7c6ef7" +checksum = "79fa67157abdfd688a259b6648808757db9347af834624f27ec646da976aee5d" dependencies = [ "proc-macro2", "quote", diff --git a/server/domain/Cargo.toml b/server/domain/Cargo.toml index be55b35..2efddf1 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.69" +async-trait = "0.1.70" diff --git a/server/infra/grpc/Cargo.toml b/server/infra/grpc/Cargo.toml index 499f6df..31f5f71 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.69" +async-trait = "0.1.70" 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 b95d54b..34564e2 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.69" +async-trait = "0.1.70" chrono = "0.4.26" sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "mysql", "chrono"] }