diff --git a/Cargo.lock b/Cargo.lock index 4b6f18bf..5c0c790b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4505,18 +4505,18 @@ checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" [[package]] name = "thiserror" -version = "1.0.34" +version = "1.0.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c1b05ca9d106ba7d2e31a9dab4a64e7be2cce415321966ea3132c49a656e252" +checksum = "c53f98874615aea268107765aa1ed8f6116782501d18e53d08b471733bea6c85" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.34" +version = "1.0.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8f2591983642de85c921015f3f070c665a197ed69e417af436115e3a1407487" +checksum = "f8b463991b4eab2d801e724172285ec4195c650e8ec79b149e6c2a8e6dd3f783" dependencies = [ "proc-macro2", "quote", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index d710cd59..3a2c6471 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -23,7 +23,7 @@ serde_with = "2.0.1" serde_urlencoded = "0.7.1" serde_json = "1.0.85" sqlx = "0.6.1" -thiserror = "1.0.34" +thiserror = "1.0.35" 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 d04e75a5..0da61737 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.34" +thiserror = "1.0.35" anyhow = "1.0.64" schemars = { version = "0.8.10", features = ["url", "chrono"] } diff --git a/crates/data-model/Cargo.toml b/crates/data-model/Cargo.toml index 0753b301..09550a44 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.22" -thiserror = "1.0.34" +thiserror = "1.0.35" serde = "1.0.144" url = { version = "2.3.1", features = ["serde"] } crc = "3.0.0" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 6ea29644..8dda6d69 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.34" +thiserror = "1.0.35" anyhow = "1.0.64" # Web server diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 6a8ff3ad..8f0867cd 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -22,7 +22,7 @@ rustls = "0.20.6" serde = "1.0.144" serde_json = "1.0.85" serde_urlencoded = "0.7.1" -thiserror = "1.0.34" +thiserror = "1.0.35" tokio = { version = "1.20.1", optional = true } tower = { version = "0.4.13", features = ["timeout", "limit"] } tower-http = { version = "0.3.4", features = ["follow-redirect", "decompression-full", "set-header", "compression-full", "cors", "util"] } diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index ed2e80c7..180c561b 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -26,7 +26,7 @@ serde_json = "1.0.85" serde_with = { version = "2.0.1", features = ["base64"] } sha2 = "0.10.5" signature = "1.6.1" -thiserror = "1.0.34" +thiserror = "1.0.35" tracing = "0.1.36" url = { version = "2.3.1", features = ["serde"] } diff --git a/crates/keystore/Cargo.toml b/crates/keystore/Cargo.toml index c6ee79c8..9dbb914b 100644 --- a/crates/keystore/Cargo.toml +++ b/crates/keystore/Cargo.toml @@ -23,7 +23,7 @@ rand = "0.8.5" rsa = { version = "0.7.0-pre", features = ["std", "pem"] } sec1 = { version = "0.3.0", features = ["std"] } spki = { version = "0.6.0", features = ["std"] } -thiserror = "1.0.34" +thiserror = "1.0.35" generic-array = "0.14.6" chacha20poly1305 = { version = "0.10.1", features = ["std"] } base64ct = "1.5.2" diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index 52b2532c..2062837b 100644 --- a/crates/oauth2-types/Cargo.toml +++ b/crates/oauth2-types/Cargo.toml @@ -17,7 +17,7 @@ serde_with = { version = "2.0.1", features = ["chrono"] } chrono = "0.4.22" sha2 = "0.10.5" data-encoding = "2.3.2" -thiserror = "1.0.34" +thiserror = "1.0.35" itertools = "0.10.3" mas-iana = { path = "../iana" } diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index 8063d9d0..fc51ec3c 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -10,7 +10,7 @@ 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" -thiserror = "1.0.34" +thiserror = "1.0.35" tokio = { version = "1.20.1", features = ["io-util", "rt"] } tracing = "0.1.36" wasmtime = "0.40.1" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 98f42eba..83a6a6c8 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -11,7 +11,7 @@ sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres", "mig chrono = { version = "0.4.22", features = ["serde"] } serde = { version = "1.0.144", features = ["derive"] } serde_json = "1.0.85" -thiserror = "1.0.34" +thiserror = "1.0.35" anyhow = "1.0.64" tracing = "0.1.36" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 7d7c80c4..0b041267 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.64" -thiserror = "1.0.34" +thiserror = "1.0.35" tera = "1.17.0" serde = { version = "1.0.144", features = ["derive"] }