diff --git a/Cargo.lock b/Cargo.lock index c1be966a..ec7935b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5845,22 +5845,22 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.39" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c" +checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.39" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e" +checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" dependencies = [ "proc-macro2 1.0.52", "quote 1.0.26", - "syn 1.0.109", + "syn 2.0.4", ] [[package]] diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 4e23c99b..e9e28992 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -22,7 +22,7 @@ serde = "1.0.158" serde_with = "2.3.1" serde_urlencoded = "0.7.1" serde_json = "1.0.94" -thiserror = "1.0.39" +thiserror = "1.0.40" tokio = "1.26.0" tower = { version = "0.4.13", features = ["util"] } tracing = "0.1.37" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 2929c2f9..e6701dee 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -10,7 +10,7 @@ tokio = { version = "1.26.0", features = ["fs", "rt"] } tracing = { version = "0.1.37" } async-trait = "0.1.67" -thiserror = "1.0.39" +thiserror = "1.0.40" anyhow = "1.0.69" camino = { version = "1.1.4", features = ["serde1"] } diff --git a/crates/data-model/Cargo.toml b/crates/data-model/Cargo.toml index 2770e899..856f7e71 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.24" -thiserror = "1.0.39" +thiserror = "1.0.40" serde = "1.0.158" url = { version = "2.3.1", features = ["serde"] } crc = "3.0.1" diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index 24ed8727..ac06604c 100644 --- a/crates/email/Cargo.toml +++ b/crates/email/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] async-trait = "0.1.67" tracing = "0.1.37" -thiserror = "1.0.39" +thiserror = "1.0.40" aws-sdk-sesv2 = { version = "0.24.0", default-features = false } aws-config = { version = "0.54.1", default-features = false } diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index 35badad4..540a08d1 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -11,7 +11,7 @@ async-graphql = { version = "5.0.6", features = ["chrono", "url"] } chrono = "0.4.24" serde = { version = "1.0.158", features = ["derive"] } tokio = { version = "1.26.0", features = ["sync"] } -thiserror = "1.0.39" +thiserror = "1.0.40" tracing = "0.1.37" ulid = "1.0.0" url = "2.3.1" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 128ce12f..48a0302f 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -14,7 +14,7 @@ futures-util = "0.3.27" tracing = "0.1.37" # Error management -thiserror = "1.0.39" +thiserror = "1.0.40" anyhow = "1.0.69" sentry = { version = "0.30.0", default-features = false } diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 535d1ce9..e8395b0b 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -25,7 +25,7 @@ rustls-native-certs = { version = "0.6.2", optional = true } serde = "1.0.158" serde_json = "1.0.94" serde_urlencoded = "0.7.1" -thiserror = "1.0.39" +thiserror = "1.0.40" tokio = { version = "1.26.0", features = ["sync", "parking_lot"], optional = true } tower = { version = "0.4.13", features = [] } tower-http = { version = "0.4.0", features = ["cors"] } diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index b95e0e87..c47fd29a 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -25,7 +25,7 @@ serde_json = "1.0.94" serde_with = { version = "2.3.1", features = ["base64"] } sha2 = { version = "0.10.6", features = ["oid"] } signature = "2.0.0" -thiserror = "1.0.39" +thiserror = "1.0.40" tracing = "0.1.37" url = { version = "2.3.1", features = ["serde"] } diff --git a/crates/keystore/Cargo.toml b/crates/keystore/Cargo.toml index b970d5f8..fb3b207d 100644 --- a/crates/keystore/Cargo.toml +++ b/crates/keystore/Cargo.toml @@ -22,7 +22,7 @@ rand = "0.8.5" rsa = { version = "0.9.0-pre.0", features = ["std", "pem"] } sec1 = { version = "0.7.1", features = ["std"] } spki = { version = "0.7.0", features = ["std"] } -thiserror = "1.0.39" +thiserror = "1.0.40" generic-array = "0.14.6" chacha20poly1305 = { version = "0.10.1", features = ["std"] } base64ct = "1.6.0" diff --git a/crates/listener/Cargo.toml b/crates/listener/Cargo.toml index 77099e65..0e9226dd 100644 --- a/crates/listener/Cargo.toml +++ b/crates/listener/Cargo.toml @@ -11,7 +11,7 @@ futures-util = "0.3.27" http-body = "0.4.5" hyper = { version = "0.14.25", features = ["server", "http1", "http2", "tcp"] } pin-project-lite = "0.2.9" -thiserror = "1.0.39" +thiserror = "1.0.40" tokio = { version = "1.26.0", features = ["net", "rt", "macros", "signal", "time"] } tokio-rustls = "0.23.4" tower-http = { version = "0.4.0", features = ["add-extension"] } diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index aefc34bb..58af2351 100644 --- a/crates/oauth2-types/Cargo.toml +++ b/crates/oauth2-types/Cargo.toml @@ -17,7 +17,7 @@ serde_with = { version = "2.3.1", features = ["chrono"] } chrono = "0.4.24" sha2 = "0.10.6" data-encoding = "2.3.3" -thiserror = "1.0.39" +thiserror = "1.0.40" mas-iana = { path = "../iana" } mas-jose = { path = "../jose" } diff --git a/crates/oidc-client/Cargo.toml b/crates/oidc-client/Cargo.toml index eeb63e6e..7cde3ca9 100644 --- a/crates/oidc-client/Cargo.toml +++ b/crates/oidc-client/Cargo.toml @@ -34,7 +34,7 @@ serde = { version = "1.0.158", features = ["derive"] } serde_json = "1.0.94" serde_urlencoded = "0.7.1" serde_with = "2.3.1" -thiserror = "1.0.39" +thiserror = "1.0.40" tokio = { version = "1.26.0", features = ["rt", "macros", "rt-multi-thread"] } tower = { version = "0.4.13", features = ["full"] } tracing = "0.1.37" diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index d129acdd..d72cf014 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0.69" opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" } serde = { version = "1.0.158", features = ["derive"] } serde_json = "1.0.94" -thiserror = "1.0.39" +thiserror = "1.0.40" tokio = { version = "1.26.0", features = ["io-util"] } tracing = "0.1.37" wasmtime = { version = "6.0.1", default-features = false, features = ["async", "cranelift"] } diff --git a/crates/spa/Cargo.toml b/crates/spa/Cargo.toml index 8b8a9a30..725be192 100644 --- a/crates/spa/Cargo.toml +++ b/crates/spa/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] serde = { version = "1.0.158", features = ["derive"] } serde_json = "1.0.94" -thiserror = "1.0.39" +thiserror = "1.0.40" camino = { version = "1.1.4", features = ["serde1"] } headers = "0.3.8" http = "0.2.9" diff --git a/crates/storage-pg/Cargo.toml b/crates/storage-pg/Cargo.toml index db15b709..2661ac86 100644 --- a/crates/storage-pg/Cargo.toml +++ b/crates/storage-pg/Cargo.toml @@ -11,7 +11,7 @@ sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "mig chrono = { version = "0.4.24", features = ["serde"] } serde = { version = "1.0.158", features = ["derive"] } serde_json = "1.0.94" -thiserror = "1.0.39" +thiserror = "1.0.40" tracing = "0.1.37" futures-util = "0.3.27" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 21b97965..351d39a5 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] async-trait = "0.1.67" chrono = "0.4.24" -thiserror = "1.0.39" +thiserror = "1.0.40" futures-util = "0.3.27" apalis-core = { version = "=0.4.0-alpha.5", features = ["tokio-comp"] } diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index 5039c9ef..69a87328 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -15,7 +15,7 @@ chrono = "0.4.24" rand = "0.8.5" rand_chacha = "0.3.1" sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] } -thiserror = "1.0.30" +thiserror = "1.0.40" tower = "0.4.13" tracing = "0.1.37" tracing-opentelemetry = "0.18.0" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 8ca255b4..f74d675e 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -10,7 +10,7 @@ tracing = "0.1.37" tokio = { version = "1.26.0", features = ["macros", "rt"] } anyhow = "1.0.69" -thiserror = "1.0.39" +thiserror = "1.0.40" tera = "1.18.1" serde = { version = "1.0.158", features = ["derive"] }