diff --git a/server/Cargo.lock b/server/Cargo.lock index cf2a879..10103a2 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -45,9 +45,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.73" +version = "1.0.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f768393e7fabd388fe8409b13faa4d93ab0fef35db1508438dfdb066918bcf38" +checksum = "8c6f84b74db2535ebae81eede2f39b947dcbf01d093ae5f791e5dd414a1bf289" [[package]] name = "async-trait" diff --git a/server/app/Cargo.toml b/server/app/Cargo.toml index 6097288..a2cfe86 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.73" +anyhow = "1.0.74" tokio = { version = "1.31.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 d368456..a466079 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.73" +anyhow = "1.0.74" envy = "0.4.2" serde = "1.0.173" diff --git a/server/domain/Cargo.toml b/server/domain/Cargo.toml index 938332f..e9c1ab3 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.73" +anyhow = "1.0.74" async-trait = "0.1.73" diff --git a/server/infra/grpc/Cargo.toml b/server/infra/grpc/Cargo.toml index d4b5ec0..7138849 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.73" +anyhow = "1.0.74" 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 f167104..4472afe 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.73" +anyhow = "1.0.74" async-trait = "0.1.73" chrono = "0.4.26" sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "mysql", "chrono"] }