diff --git a/Cargo.lock b/Cargo.lock index f7d08db4..ab128d38 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -427,9 +427,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.78" +version = "1.0.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca87830a3e3fb156dc96cfbd31cb620265dd053be734723f22b760d6cc3c3051" +checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" [[package]] name = "arc-swap" diff --git a/openubl/api/Cargo.toml b/openubl/api/Cargo.toml index f7ad7861..7e9a4452 100644 --- a/openubl/api/Cargo.toml +++ b/openubl/api/Cargo.toml @@ -16,7 +16,7 @@ xsender = {path = "../../xsender"} sea-orm = { version = "0.12", features = [ "sea-query-binder", "sqlx-postgres", "runtime-tokio-rustls", "macros" ] } sea-query = "0.30.5" async-trait = "0.1.75" -anyhow = "1.0.76" +anyhow = "1.0.81" thiserror = "1.0.50" serde_json = "1.0.108" serde = { version = "1.0.195", features = ["derive"] } diff --git a/openubl/cli/Cargo.toml b/openubl/cli/Cargo.toml index d8bb9954..7421b51b 100644 --- a/openubl/cli/Cargo.toml +++ b/openubl/cli/Cargo.toml @@ -9,5 +9,5 @@ edition = "2021" openubl-server = { path = "../server" } clap = { version = "4.4.11", features = ["derive", "env"] } -anyhow = "1.0.76" +anyhow = "1.0.81" actix-web = "4.4.1" diff --git a/openubl/server/Cargo.toml b/openubl/server/Cargo.toml index 10fddf61..79d594cf 100644 --- a/openubl/server/Cargo.toml +++ b/openubl/server/Cargo.toml @@ -20,7 +20,7 @@ actix-web = "4.4.0" serde = { version = "1.0.193", features = ["derive"] } sea-orm = { version = "0.12.10", features = ["sqlx-postgres", "runtime-tokio-rustls", "macros"] } clap = { version = "4.4.11", features = ["derive", "env"] } -anyhow = "1.0.76" +anyhow = "1.0.81" env_logger = "0.10.1" thiserror = "1.0.50" utoipa = { version = "4.1.0", features = ["actix_extras"] } diff --git a/openubl/signature/Cargo.toml b/openubl/signature/Cargo.toml index 1586c9a0..d3a05949 100644 --- a/openubl/signature/Cargo.toml +++ b/openubl/signature/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.78" +anyhow = "1.0.81" thiserror = "1.0.53" diff --git a/openubl/storage/Cargo.toml b/openubl/storage/Cargo.toml index 838812ac..eabe8fc5 100644 --- a/openubl/storage/Cargo.toml +++ b/openubl/storage/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" clap = {version = "4.4.11", features = ["derive", "env"]} minio = "0.1.0" serde = { version = "1.0.193", features = ["derive"] } -anyhow = "1.0.78" +anyhow = "1.0.81" uuid = { version = "1.6.1", features = ["v4"] } thiserror = "1.0.53" zip = "0.6.6" diff --git a/xsender/Cargo.toml b/xsender/Cargo.toml index c0e15c12..f6ca7d98 100644 --- a/xsender/Cargo.toml +++ b/xsender/Cargo.toml @@ -16,7 +16,7 @@ reqwest = "0.11.22" regex = "1.10.2" base64 = "0.21.5" thiserror = "1.0.53" -anyhow = "1.0.78" +anyhow = "1.0.81" sha2 = "0.10.8" [dev-dependencies]