diff --git a/Cargo.lock b/Cargo.lock index d9d52128..5d50631c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4576,18 +4576,18 @@ checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" [[package]] name = "thiserror" -version = "1.0.33" +version = "1.0.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d0a539a918745651435ac7db7a18761589a94cd7e94cd56999f828bf73c8a57" +checksum = "8c1b05ca9d106ba7d2e31a9dab4a64e7be2cce415321966ea3132c49a656e252" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.33" +version = "1.0.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c251e90f708e16c49a16f4917dc2131e75222b72edfa9cb7f7c58ae56aae0c09" +checksum = "e8f2591983642de85c921015f3f070c665a197ed69e417af436115e3a1407487" dependencies = [ "proc-macro2", "quote", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 1e164fab..04e86476 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.85" sqlx = "0.6.1" -thiserror = "1.0.32" +thiserror = "1.0.34" 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 d3bcf666..c5cf1fc4 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.32" +thiserror = "1.0.34" 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 78ac4127..2a52f8e1 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.32" +thiserror = "1.0.34" serde = "1.0.144" url = { version = "2.2.2", features = ["serde"] } crc = "3.0.0" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 29911681..6c1b2d42 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.32" +thiserror = "1.0.34" anyhow = "1.0.64" # Web server diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index c9f02c19..357bd55c 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.32" +thiserror = "1.0.34" 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 485d3e84..ca565cdd 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.0", features = ["base64"] } sha2 = "0.10.5" signature = "1.6.0" -thiserror = "1.0.32" +thiserror = "1.0.34" tracing = "0.1.36" url = { version = "2.2.2", features = ["serde"] } diff --git a/crates/keystore/Cargo.toml b/crates/keystore/Cargo.toml index baf25e03..75febf25 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.32" +thiserror = "1.0.34" 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 9714bfbd..1b16f4c1 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.22" sha2 = "0.10.5" data-encoding = "2.3.2" -thiserror = "1.0.32" +thiserror = "1.0.34" itertools = "0.10.3" serde-enum-str = "0.2.5" diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index 866ad66f..8063d9d0 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.32" +thiserror = "1.0.34" 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 454049cd..d8396da7 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.32" +thiserror = "1.0.34" anyhow = "1.0.64" tracing = "0.1.36" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index a8d3bf34..e04f6016 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.32" +thiserror = "1.0.34" tera = "1.17.0" serde = { version = "1.0.144", features = ["derive"] }