You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-29 22:01:14 +03:00
build(deps): bump thiserror from 1.0.40 to 1.0.41
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.40 to 1.0.41. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.40...1.0.41) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
committed by
Quentin Gliech
parent
b0212f2cb2
commit
c068460cd7
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -5900,18 +5900,18 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "thiserror"
|
||||
version = "1.0.40"
|
||||
version = "1.0.41"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
|
||||
checksum = "c16a64ba9387ef3fdae4f9c1a7f07a0997fce91985c0336f1ddc1822b3b37802"
|
||||
dependencies = [
|
||||
"thiserror-impl",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "thiserror-impl"
|
||||
version = "1.0.40"
|
||||
version = "1.0.41"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
||||
checksum = "d14928354b01c4d6a4f0e549069adef399a284e7995c7ccca94e8a07a5346c59"
|
||||
dependencies = [
|
||||
"proc-macro2 1.0.63",
|
||||
"quote 1.0.29",
|
||||
|
@ -22,7 +22,7 @@ serde = "1.0.166"
|
||||
serde_with = "3.0.0"
|
||||
serde_urlencoded = "0.7.1"
|
||||
serde_json = "1.0.99"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
tokio = "1.29.1"
|
||||
tower = { version = "0.4.13", features = ["util"] }
|
||||
tracing = "0.1.37"
|
||||
|
@ -10,7 +10,7 @@ tokio = { version = "1.29.1", features = ["fs", "rt"] }
|
||||
tracing = "0.1.37"
|
||||
async-trait = "0.1.70"
|
||||
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
anyhow = "1.0.71"
|
||||
|
||||
camino = { version = "1.1.4", features = ["serde1"] }
|
||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
chrono = "0.4.26"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
serde = "1.0.166"
|
||||
url = { version = "2.4.0", features = ["serde"] }
|
||||
crc = "3.0.1"
|
||||
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
||||
[dependencies]
|
||||
async-trait = "0.1.70"
|
||||
tracing = "0.1.37"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
headers = "0.3.8"
|
||||
|
||||
aws-sdk-sesv2 = { version = "0.28.0", default-features = false }
|
||||
|
@ -12,7 +12,7 @@ async-trait = "0.1.70"
|
||||
chrono = "0.4.26"
|
||||
lettre = { version = "0.10.4", default-features = false }
|
||||
serde = { version = "1.0.166", features = ["derive"] }
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
tokio = { version = "1.29.1", features = ["sync"] }
|
||||
tracing = "0.1.37"
|
||||
tower = { version = "0.4.13", features = ["util"] }
|
||||
|
@ -14,7 +14,7 @@ futures-util = "0.3.28"
|
||||
tracing = "0.1.37"
|
||||
|
||||
# Error management
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
anyhow = "1.0.71"
|
||||
sentry = { version = "0.31.5", default-features = false }
|
||||
|
||||
|
@ -23,7 +23,7 @@ rustls-native-certs = { version = "0.6.3", optional = true }
|
||||
serde = "1.0.166"
|
||||
serde_json = "1.0.99"
|
||||
serde_urlencoded = "0.7.1"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
tokio = { version = "1.29.1", features = ["sync", "parking_lot"], optional = true }
|
||||
tower = { version = "0.4.13", features = [] }
|
||||
tower-http = { version = "0.4.1", features = ["cors"] }
|
||||
|
@ -25,7 +25,7 @@ serde_json = "1.0.99"
|
||||
serde_with = { version = "3.0.0", features = ["base64"] }
|
||||
sha2 = { version = "0.10.7", features = ["oid"] }
|
||||
signature = "2.1.0"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
tracing = "0.1.37"
|
||||
url = { version = "2.4.0", features = ["serde"] }
|
||||
|
||||
|
@ -22,7 +22,7 @@ rand = "0.8.5"
|
||||
rsa = { version = "0.9.2", features = ["std", "pem"] }
|
||||
sec1 = { version = "0.7.2", features = ["std"] }
|
||||
spki = { version = "0.7.2", features = ["std"] }
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
generic-array = "0.14.7"
|
||||
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
|
||||
base64ct = "1.6.0"
|
||||
|
@ -11,7 +11,7 @@ futures-util = "0.3.28"
|
||||
http-body = "0.4.5"
|
||||
hyper = { version = "0.14.27", features = ["server", "http1", "http2", "tcp"] }
|
||||
pin-project-lite = "0.2.10"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
tokio = { version = "1.29.1", features = ["net", "rt", "macros", "signal", "time"] }
|
||||
tokio-rustls = "0.24.1"
|
||||
tower-http = { version = "0.4.1", features = ["add-extension"] }
|
||||
|
@ -17,7 +17,7 @@ serde_with = { version = "3.0.0", features = ["chrono"] }
|
||||
chrono = "0.4.26"
|
||||
sha2 = "0.10.7"
|
||||
data-encoding = "2.4.0"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
|
||||
mas-iana = { path = "../iana" }
|
||||
mas-jose = { path = "../jose" }
|
||||
|
@ -34,7 +34,7 @@ serde = { version = "1.0.166", features = ["derive"] }
|
||||
serde_json = "1.0.99"
|
||||
serde_urlencoded = "0.7.1"
|
||||
serde_with = "3.0.0"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
tokio = { version = "1.29.1", features = ["rt", "macros", "rt-multi-thread"] }
|
||||
tower = { version = "0.4.13", features = ["full"] }
|
||||
tracing = "0.1.37"
|
||||
|
@ -10,7 +10,7 @@ anyhow = "1.0.71"
|
||||
opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" }
|
||||
serde = { version = "1.0.166", features = ["derive"] }
|
||||
serde_json = "1.0.99"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
tokio = { version = "1.29.1", features = ["io-util"] }
|
||||
tracing = "0.1.37"
|
||||
wasmtime = { version = "9.0.4", default-features = false, features = ["async", "cranelift"] }
|
||||
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
||||
[dependencies]
|
||||
serde = { version = "1.0.166", features = ["derive"] }
|
||||
serde_json = "1.0.99"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
camino = { version = "1.1.4", features = ["serde1"] }
|
||||
headers = "0.3.8"
|
||||
http = "0.2.9"
|
||||
|
@ -11,7 +11,7 @@ sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres", "mig
|
||||
chrono = { version = "0.4.26", features = ["serde"] }
|
||||
serde = { version = "1.0.166", features = ["derive"] }
|
||||
serde_json = "1.0.99"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
tracing = "0.1.37"
|
||||
futures-util = "0.3.28"
|
||||
|
||||
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
||||
[dependencies]
|
||||
async-trait = "0.1.70"
|
||||
chrono = "0.4.26"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
futures-util = "0.3.28"
|
||||
|
||||
apalis-core = { version = "0.4.2", features = ["tokio-comp"] }
|
||||
|
@ -15,7 +15,7 @@ chrono = "0.4.26"
|
||||
rand = "0.8.5"
|
||||
rand_chacha = "0.3.1"
|
||||
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres"] }
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
tower = "0.4.13"
|
||||
tracing = "0.1.37"
|
||||
tracing-opentelemetry = "0.19.0"
|
||||
|
@ -10,7 +10,7 @@ tracing = "0.1.37"
|
||||
tokio = { version = "1.29.1", features = ["macros", "rt"] }
|
||||
|
||||
anyhow = "1.0.71"
|
||||
thiserror = "1.0.40"
|
||||
thiserror = "1.0.41"
|
||||
|
||||
tera = "1.19.0"
|
||||
serde = { version = "1.0.166", features = ["derive"] }
|
||||
|
Reference in New Issue
Block a user