diff --git a/Cargo.lock b/Cargo.lock index de6968b7..8758fe9b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4392,18 +4392,18 @@ checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" [[package]] name = "thiserror" -version = "1.0.31" +version = "1.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a" +checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.31" +version = "1.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a" +checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21" dependencies = [ "proc-macro2", "quote", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index fa0ba6f0..52d656a7 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -23,7 +23,7 @@ serde_with = "2.0.0" serde_urlencoded = "0.7.1" serde_json = "1.0.82" sqlx = "0.6.0" -thiserror = "1.0.31" +thiserror = "1.0.32" tokio = "1.20.1" tower = { version = "0.4.13", features = ["util"] } tracing = "0.1.36" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 9a5631ab..2a9378a8 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -10,7 +10,7 @@ tokio = { version = "1.20.1", features = [] } tracing = { version = "0.1.36", features = ["log"] } async-trait = "0.1.57" -thiserror = "1.0.31" +thiserror = "1.0.32" anyhow = "1.0.59" schemars = { version = "0.8.10", features = ["url", "chrono"] } diff --git a/crates/data-model/Cargo.toml b/crates/data-model/Cargo.toml index dc3d3982..c9e3e16b 100644 --- a/crates/data-model/Cargo.toml +++ b/crates/data-model/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] chrono = "0.4.19" -thiserror = "1.0.31" +thiserror = "1.0.32" serde = "1.0.141" url = { version = "2.2.2", features = ["serde"] } crc = "3.0.0" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 78dec421..2644282a 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -13,7 +13,7 @@ tokio = { version = "1.20.1", features = ["macros"] } tracing = "0.1.36" # Error management -thiserror = "1.0.31" +thiserror = "1.0.32" anyhow = "1.0.59" # Web server diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index f5e24b46..6484aab7 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -21,7 +21,7 @@ opentelemetry-semantic-conventions = "0.9.0" rustls = "0.20.6" serde = "1.0.141" serde_json = "1.0.82" -thiserror = "1.0.31" +thiserror = "1.0.32" tokio = { version = "1.20.1", features = ["sync", "parking_lot"] } tower = { version = "0.4.13", features = ["timeout", "limit"] } tower-http = { version = "0.3.4", features = ["follow-redirect", "decompression-full", "set-header", "compression-full", "cors"] } diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index fde38ce3..bfda32de 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -29,7 +29,7 @@ serde_json = "1.0.82" serde_with = { version = "2.0.0", features = ["base64"] } sha2 = "0.10.2" signature = "1.5.0" -thiserror = "1.0.31" +thiserror = "1.0.32" tokio = { version = "1.20.1", features = ["macros", "rt", "sync"] } tower = { version = "0.4.13", features = ["util"] } tracing = "0.1.36" diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index a7520988..3ee9f2ec 100644 --- a/crates/oauth2-types/Cargo.toml +++ b/crates/oauth2-types/Cargo.toml @@ -17,7 +17,7 @@ serde_with = { version = "2.0.0", features = ["chrono"] } chrono = "0.4.19" sha2 = "0.10.2" data-encoding = "2.3.2" -thiserror = "1.0.31" +thiserror = "1.0.32" itertools = "0.10.3" mas-iana = { path = "../iana" } diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index 6db3e13d..aeac9ffe 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0.59" opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" } serde = { version = "1.0.141", features = ["derive"] } serde_json = "1.0.82" -thiserror = "1.0.31" +thiserror = "1.0.32" tokio = { version = "1.20.1", features = ["io-util", "rt"] } tracing = "0.1.36" wasmtime = "0.39.1" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 5a2a68a8..b60bb053 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -11,7 +11,7 @@ sqlx = { version = "0.6.0", features = ["runtime-tokio-rustls", "postgres", "mig chrono = { version = "0.4.19", features = ["serde"] } serde = { version = "1.0.141", features = ["derive"] } serde_json = "1.0.82" -thiserror = "1.0.31" +thiserror = "1.0.32" anyhow = "1.0.59" tracing = "0.1.36" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index e9630a12..6f3b6166 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -13,7 +13,7 @@ tracing = "0.1.36" tokio = { version = "1.20.1", features = ["macros"] } anyhow = "1.0.59" -thiserror = "1.0.31" +thiserror = "1.0.32" tera = "1.16.0" serde = { version = "1.0.141", features = ["derive"] }