From 4d9f1be58f60b928f306162aaaaa0a93af2279a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Sep 2022 11:54:56 +0000 Subject: [PATCH] Bump thiserror from 1.0.36 to 1.0.37 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.36 to 1.0.37. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.36...1.0.37) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- crates/axum-utils/Cargo.toml | 2 +- crates/config/Cargo.toml | 2 +- crates/data-model/Cargo.toml | 2 +- crates/handlers/Cargo.toml | 2 +- crates/http/Cargo.toml | 2 +- crates/jose/Cargo.toml | 2 +- crates/keystore/Cargo.toml | 2 +- crates/oauth2-types/Cargo.toml | 2 +- crates/policy/Cargo.toml | 2 +- crates/storage/Cargo.toml | 2 +- crates/templates/Cargo.toml | 2 +- 12 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eeae3c6c..a41cbec6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4596,18 +4596,18 @@ checksum = "949517c0cf1bf4ee812e2e07e08ab448e3ae0d23472aee8a06c985f0c8815b16" [[package]] name = "thiserror" -version = "1.0.36" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a99cb8c4b9a8ef0e7907cd3b617cc8dc04d571c4e73c8ae403d80ac160bb122" +checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.36" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a891860d3c8d66fec8e73ddb3765f90082374dbaaa833407b904a94f1a7eb43" +checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" dependencies = [ "proc-macro2", "quote", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 661a1dc2..60a65c13 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.2" -thiserror = "1.0.36" +thiserror = "1.0.37" tokio = "1.21.2" tower = { version = "0.4.13", features = ["util"] } tracing = "0.1.36" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 91d58e46..8842b31a 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -10,7 +10,7 @@ tokio = { version = "1.21.2", features = [] } tracing = { version = "0.1.36", features = ["log"] } async-trait = "0.1.57" -thiserror = "1.0.36" +thiserror = "1.0.37" anyhow = "1.0.65" schemars = { version = "0.8.10", features = ["url", "chrono"] } diff --git a/crates/data-model/Cargo.toml b/crates/data-model/Cargo.toml index 82ae09ce..8c721f5b 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.36" +thiserror = "1.0.37" serde = "1.0.145" url = { version = "2.3.1", features = ["serde"] } crc = "3.0.0" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index fe99294c..092a59cf 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -13,7 +13,7 @@ tokio = { version = "1.21.2", features = ["macros"] } tracing = "0.1.36" # Error management -thiserror = "1.0.36" +thiserror = "1.0.37" anyhow = "1.0.65" # Web server diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 4b9b02fd..894e9f68 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -23,7 +23,7 @@ rustls-native-certs = { version = "0.6.2", optional = true } serde = "1.0.145" serde_json = "1.0.85" serde_urlencoded = "0.7.1" -thiserror = "1.0.36" +thiserror = "1.0.37" tokio = { version = "1.21.2", features = ["sync", "parking_lot"], 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 bd8247bb..57423e9d 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 = { version = "0.10.6", features = ["oid"] } signature = "1.6.3" -thiserror = "1.0.36" +thiserror = "1.0.37" tracing = "0.1.36" url = { version = "2.3.1", features = ["serde"] } diff --git a/crates/keystore/Cargo.toml b/crates/keystore/Cargo.toml index 8386e0ae..51177afa 100644 --- a/crates/keystore/Cargo.toml +++ b/crates/keystore/Cargo.toml @@ -23,7 +23,7 @@ rand = "0.8.5" rsa = { version = "0.7.0-rc.0", features = ["std", "pem"] } sec1 = { version = "0.3.0", features = ["std"] } spki = { version = "0.6.0", features = ["std"] } -thiserror = "1.0.36" +thiserror = "1.0.37" 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 f4620928..39da71fe 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.6" data-encoding = "2.3.2" -thiserror = "1.0.36" +thiserror = "1.0.37" itertools = "0.10.5" mas-iana = { path = "../iana" } diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index 28de90c1..4f86bbfc 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0.65" opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" } serde = { version = "1.0.145", features = ["derive"] } serde_json = "1.0.85" -thiserror = "1.0.36" +thiserror = "1.0.37" tokio = { version = "1.21.2", 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 35bd32e4..ec8e2236 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -11,7 +11,7 @@ sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "mig chrono = { version = "0.4.22", features = ["serde"] } serde = { version = "1.0.145", features = ["derive"] } serde_json = "1.0.85" -thiserror = "1.0.36" +thiserror = "1.0.37" anyhow = "1.0.65" tracing = "0.1.36" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index d6036624..eb9e58b2 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -13,7 +13,7 @@ tracing = "0.1.36" tokio = { version = "1.21.2", features = ["macros"] } anyhow = "1.0.65" -thiserror = "1.0.36" +thiserror = "1.0.37" tera = "1.17.1" serde = { version = "1.0.145", features = ["derive"] }