diff --git a/Cargo.lock b/Cargo.lock index 5ae4a941..d9d52128 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -128,9 +128,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.63" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a26fa4d7e3f2eebadf743988fc8aec9fa9a9e82611acafd77c1462ed6262440a" +checksum = "b9a8f622bcf6ff3df478e9deba3e03e4e04b300f8e6a139e192c05fa3490afc7" [[package]] name = "argon2" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 8c1de51c..dbfa291e 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] tokio = { version = "1.20.1", features = ["full"] } futures = "0.3.24" -anyhow = "1.0.62" +anyhow = "1.0.64" clap = { version = "3.2.20", features = ["derive"] } dotenv = "0.15.0" schemars = { version = "0.8.10", features = ["url", "chrono"] } diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index f8f7b44f..d3bcf666 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -11,7 +11,7 @@ tracing = { version = "0.1.36", features = ["log"] } async-trait = "0.1.57" thiserror = "1.0.32" -anyhow = "1.0.62" +anyhow = "1.0.64" schemars = { version = "0.8.10", features = ["url", "chrono"] } figment = { version = "0.10.6", features = ["env", "yaml", "test"] } diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index b70d6a60..8b6ea335 100644 --- a/crates/email/Cargo.toml +++ b/crates/email/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -anyhow = "1.0.62" +anyhow = "1.0.64" async-trait = "0.1.57" tokio = { version = "1.20.1", features = ["macros"] } tracing = "0.1.36" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 9bbadfbc..29911681 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -14,7 +14,7 @@ tracing = "0.1.36" # Error management thiserror = "1.0.32" -anyhow = "1.0.62" +anyhow = "1.0.64" # Web server hyper = { version = "0.14.20", features = ["full"] } diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 46b2437c..c9f02c19 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -30,7 +30,7 @@ tracing = "0.1.36" tracing-opentelemetry = "0.17.4" [dev-dependencies] -anyhow = "1.0.62" +anyhow = "1.0.64" serde = { version = "1.0.144", features = ["derive"] } tokio = { version = "1.20.1", features = ["macros", "rt"] } tower = { version = "0.4.13", features = ["util"] } diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index 7d8f5a39..80701c18 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -anyhow = "1.0.62" +anyhow = "1.0.64" async-trait = "0.1.57" convert_case = "0.5.0" csv = "1.1.6" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 346ef480..485d3e84 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -anyhow = "1.0.62" +anyhow = "1.0.64" base64ct = { version = "1.5.2", features = ["std"] } chrono = { version = "0.4.22", features = ["serde"] } digest = "0.10.3" diff --git a/crates/keystore/Cargo.toml b/crates/keystore/Cargo.toml index 0fa5be97..baf25e03 100644 --- a/crates/keystore/Cargo.toml +++ b/crates/keystore/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -anyhow = "1.0.62" +anyhow = "1.0.64" aead = { version = "0.5.1", features = ["std"] } const-oid = { version = "0.9.0", features = ["std"] } cookie = { version = "0.16.0", features = ["key-expansion", "private"] } diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index a680be22..866ad66f 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -anyhow = "1.0.62" +anyhow = "1.0.64" opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" } serde = { version = "1.0.144", features = ["derive"] } serde_json = "1.0.85" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index f293d695..454049cd 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -12,7 +12,7 @@ chrono = { version = "0.4.22", features = ["serde"] } serde = { version = "1.0.144", features = ["derive"] } serde_json = "1.0.85" thiserror = "1.0.32" -anyhow = "1.0.62" +anyhow = "1.0.64" tracing = "0.1.36" # Password hashing diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 2fbde560..a8d3bf34 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -12,7 +12,7 @@ dev = [] tracing = "0.1.36" tokio = { version = "1.20.1", features = ["macros"] } -anyhow = "1.0.62" +anyhow = "1.0.64" thiserror = "1.0.32" tera = "1.17.0"