From 0d41754a29b904f0184222aea58241ab584fc7fe Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 17 Aug 2023 03:57:27 +0000 Subject: [PATCH] fix(deps): update rust crate anyhow to 1.0.75 --- server/Cargo.lock | 4 ++-- server/app/Cargo.toml | 2 +- server/config/Cargo.toml | 2 +- server/domain/Cargo.toml | 2 +- server/infra/grpc/Cargo.toml | 2 +- server/infra/repository_impl/Cargo.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/server/Cargo.lock b/server/Cargo.lock index fcab14b..8a85e8c 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -45,9 +45,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.74" +version = "1.0.75" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c6f84b74db2535ebae81eede2f39b947dcbf01d093ae5f791e5dd414a1bf289" +checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" [[package]] name = "async-trait" diff --git a/server/app/Cargo.toml b/server/app/Cargo.toml index 89c122f..2c2c715 100644 --- a/server/app/Cargo.toml +++ b/server/app/Cargo.toml @@ -9,7 +9,7 @@ config = { path = "../config" } infra_grpc = { path = "../infra/grpc" } infra_repository_impl = { path = "../infra/repository_impl" } -anyhow = "1.0.74" +anyhow = "1.0.75" tokio = { version = "1.32.0", features = ["rt-multi-thread"] } tonic = { version = "0.9.2", features = ["gzip"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } diff --git a/server/config/Cargo.toml b/server/config/Cargo.toml index a466079..bbcb2d4 100644 --- a/server/config/Cargo.toml +++ b/server/config/Cargo.toml @@ -4,6 +4,6 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.74" +anyhow = "1.0.75" envy = "0.4.2" serde = "1.0.173" diff --git a/server/domain/Cargo.toml b/server/domain/Cargo.toml index e9c1ab3..8522cd8 100644 --- a/server/domain/Cargo.toml +++ b/server/domain/Cargo.toml @@ -4,5 +4,5 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.74" +anyhow = "1.0.75" async-trait = "0.1.73" diff --git a/server/infra/grpc/Cargo.toml b/server/infra/grpc/Cargo.toml index 7138849..fa1dd9d 100644 --- a/server/infra/grpc/Cargo.toml +++ b/server/infra/grpc/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" domain = { path = "../../domain" } -anyhow = "1.0.74" +anyhow = "1.0.75" async-trait = "0.1.73" log = "0.4.20" pbjson-types = "0.5.1" diff --git a/server/infra/repository_impl/Cargo.toml b/server/infra/repository_impl/Cargo.toml index 4472afe..65bf108 100644 --- a/server/infra/repository_impl/Cargo.toml +++ b/server/infra/repository_impl/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" domain = { path = "../../domain" } config = { path = "../../config" } -anyhow = "1.0.74" +anyhow = "1.0.75" async-trait = "0.1.73" chrono = "0.4.26" sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "mysql", "chrono"] }