diff --git a/server/Cargo.lock b/server/Cargo.lock index 5937e98..a6075c9 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -45,9 +45,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.75" +version = "1.0.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" +checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" [[package]] name = "async-trait" diff --git a/server/app/Cargo.toml b/server/app/Cargo.toml index fd889cf..1125e27 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.75" +anyhow = "1.0.82" 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 4dde32f..9a0b71c 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.75" +anyhow = "1.0.82" envy = "0.4.2" serde = "1.0.189" diff --git a/server/domain/Cargo.toml b/server/domain/Cargo.toml index f6c1ed1..5187e89 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.75" +anyhow = "1.0.82" async-trait = "0.1.74" diff --git a/server/infra/grpc/Cargo.toml b/server/infra/grpc/Cargo.toml index de1e144..58b23e8 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.75" +anyhow = "1.0.82" async-trait = "0.1.74" 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 34e5dd3..8c33567 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.75" +anyhow = "1.0.82" async-trait = "0.1.74" chrono = "0.4.31" sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "mysql", "chrono"] }