diff --git a/Cargo.lock b/Cargo.lock index 495da0cc..36e0a281 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3955,18 +3955,18 @@ checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" [[package]] name = "thiserror" -version = "1.0.30" +version = "1.0.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" +checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.30" +version = "1.0.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" +checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a" dependencies = [ "proc-macro2", "quote", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 2c15eb75..a0f02dfd 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -23,7 +23,7 @@ serde_with = "1.13.0" serde_urlencoded = "0.7.1" serde_json = "1.0.79" sqlx = "0.5.13" -thiserror = "1.0.30" +thiserror = "1.0.31" tokio = "1.18.0" tower = { version = "0.4.12", features = ["util"] } tracing = "0.1.34" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index f55fc355..b8018c86 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -10,7 +10,7 @@ tokio = { version = "1.18.0", features = [] } tracing = { version = "0.1.34", features = ["log"] } async-trait = "0.1.53" -thiserror = "1.0.30" +thiserror = "1.0.31" anyhow = "1.0.57" schemars = { version = "0.8.8", features = ["url", "chrono"] } diff --git a/crates/data-model/Cargo.toml b/crates/data-model/Cargo.toml index d23a4473..da064985 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.30" +thiserror = "1.0.31" serde = "1.0.136" url = { version = "2.2.2", features = ["serde"] } crc = "3.0.0" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index e277c999..be68ef4e 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -13,7 +13,7 @@ tokio = { version = "1.18.0", features = ["macros"] } tracing = "0.1.34" # Error management -thiserror = "1.0.30" +thiserror = "1.0.31" anyhow = "1.0.57" # Web server diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 54302958..1724840e 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -21,7 +21,7 @@ opentelemetry-semantic-conventions = "0.9.0" rustls = "0.20.4" serde = "1.0.136" serde_json = "1.0.79" -thiserror = "1.0.30" +thiserror = "1.0.31" tokio = { version = "1.18.0", features = ["sync", "parking_lot"] } tower = { version = "0.4.12", features = ["timeout", "limit"] } tower-http = { version = "0.3.2", features = ["follow-redirect", "decompression-full", "set-header", "compression-full", "cors"] } diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 3f2838f1..fec557dd 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -29,7 +29,7 @@ serde_json = "1.0.79" serde_with = { version = "1.13.0", features = ["base64"] } sha2 = "0.10.2" signature = "1.4.0" -thiserror = "1.0.30" +thiserror = "1.0.31" tokio = { version = "1.18.0", features = ["macros", "rt", "sync"] } tower = { version = "0.4.12", features = ["util"] } tracing = "0.1.34" diff --git a/crates/oauth2-types/Cargo.toml b/crates/oauth2-types/Cargo.toml index 646608a7..aa8ea8d0 100644 --- a/crates/oauth2-types/Cargo.toml +++ b/crates/oauth2-types/Cargo.toml @@ -17,7 +17,7 @@ serde_with = { version = "1.13.0", features = ["chrono"] } chrono = "0.4.19" sha2 = "0.10.2" data-encoding = "2.3.2" -thiserror = "1.0.30" +thiserror = "1.0.31" itertools = "0.10.3" mas-iana = { path = "../iana" } diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 9e591a16..13a36152 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -11,7 +11,7 @@ sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres", "mi chrono = { version = "0.4.19", features = ["serde"] } serde = { version = "1.0.136", features = ["derive"] } serde_json = "1.0.79" -thiserror = "1.0.30" +thiserror = "1.0.31" anyhow = "1.0.57" tracing = "0.1.34" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index ce6210e0..3f045f03 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -13,7 +13,7 @@ tracing = "0.1.34" tokio = { version = "1.18.0", features = ["macros"] } anyhow = "1.0.57" -thiserror = "1.0.30" +thiserror = "1.0.31" tera = "1.15.0" serde = { version = "1.0.136", features = ["derive"] }