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
Bump thiserror from 1.0.30 to 1.0.31
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.30 to 1.0.31. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.30...1.0.31) --- 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
320edd5b86
commit
f0c19a17b2
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -3955,18 +3955,18 @@ checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror"
|
name = "thiserror"
|
||||||
version = "1.0.30"
|
version = "1.0.31"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
|
checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"thiserror-impl",
|
"thiserror-impl",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror-impl"
|
name = "thiserror-impl"
|
||||||
version = "1.0.30"
|
version = "1.0.31"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
|
checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
@ -23,7 +23,7 @@ serde_with = "1.13.0"
|
|||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
serde_json = "1.0.79"
|
serde_json = "1.0.79"
|
||||||
sqlx = "0.5.13"
|
sqlx = "0.5.13"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.31"
|
||||||
tokio = "1.18.0"
|
tokio = "1.18.0"
|
||||||
tower = { version = "0.4.12", features = ["util"] }
|
tower = { version = "0.4.12", features = ["util"] }
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.34"
|
||||||
|
@ -10,7 +10,7 @@ tokio = { version = "1.18.0", features = [] }
|
|||||||
tracing = { version = "0.1.34", features = ["log"] }
|
tracing = { version = "0.1.34", features = ["log"] }
|
||||||
async-trait = "0.1.53"
|
async-trait = "0.1.53"
|
||||||
|
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.31"
|
||||||
anyhow = "1.0.57"
|
anyhow = "1.0.57"
|
||||||
|
|
||||||
schemars = { version = "0.8.8", features = ["url", "chrono"] }
|
schemars = { version = "0.8.8", features = ["url", "chrono"] }
|
||||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = "0.4.19"
|
chrono = "0.4.19"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.31"
|
||||||
serde = "1.0.136"
|
serde = "1.0.136"
|
||||||
url = { version = "2.2.2", features = ["serde"] }
|
url = { version = "2.2.2", features = ["serde"] }
|
||||||
crc = "3.0.0"
|
crc = "3.0.0"
|
||||||
|
@ -13,7 +13,7 @@ tokio = { version = "1.18.0", features = ["macros"] }
|
|||||||
tracing = "0.1.34"
|
tracing = "0.1.34"
|
||||||
|
|
||||||
# Error management
|
# Error management
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.31"
|
||||||
anyhow = "1.0.57"
|
anyhow = "1.0.57"
|
||||||
|
|
||||||
# Web server
|
# Web server
|
||||||
|
@ -21,7 +21,7 @@ opentelemetry-semantic-conventions = "0.9.0"
|
|||||||
rustls = "0.20.4"
|
rustls = "0.20.4"
|
||||||
serde = "1.0.136"
|
serde = "1.0.136"
|
||||||
serde_json = "1.0.79"
|
serde_json = "1.0.79"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.31"
|
||||||
tokio = { version = "1.18.0", features = ["sync", "parking_lot"] }
|
tokio = { version = "1.18.0", features = ["sync", "parking_lot"] }
|
||||||
tower = { version = "0.4.12", features = ["timeout", "limit"] }
|
tower = { version = "0.4.12", features = ["timeout", "limit"] }
|
||||||
tower-http = { version = "0.3.2", features = ["follow-redirect", "decompression-full", "set-header", "compression-full", "cors"] }
|
tower-http = { version = "0.3.2", features = ["follow-redirect", "decompression-full", "set-header", "compression-full", "cors"] }
|
||||||
|
@ -29,7 +29,7 @@ serde_json = "1.0.79"
|
|||||||
serde_with = { version = "1.13.0", features = ["base64"] }
|
serde_with = { version = "1.13.0", features = ["base64"] }
|
||||||
sha2 = "0.10.2"
|
sha2 = "0.10.2"
|
||||||
signature = "1.4.0"
|
signature = "1.4.0"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.31"
|
||||||
tokio = { version = "1.18.0", features = ["macros", "rt", "sync"] }
|
tokio = { version = "1.18.0", features = ["macros", "rt", "sync"] }
|
||||||
tower = { version = "0.4.12", features = ["util"] }
|
tower = { version = "0.4.12", features = ["util"] }
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.34"
|
||||||
|
@ -17,7 +17,7 @@ serde_with = { version = "1.13.0", features = ["chrono"] }
|
|||||||
chrono = "0.4.19"
|
chrono = "0.4.19"
|
||||||
sha2 = "0.10.2"
|
sha2 = "0.10.2"
|
||||||
data-encoding = "2.3.2"
|
data-encoding = "2.3.2"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.31"
|
||||||
itertools = "0.10.3"
|
itertools = "0.10.3"
|
||||||
|
|
||||||
mas-iana = { path = "../iana" }
|
mas-iana = { path = "../iana" }
|
||||||
|
@ -11,7 +11,7 @@ sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres", "mi
|
|||||||
chrono = { version = "0.4.19", features = ["serde"] }
|
chrono = { version = "0.4.19", features = ["serde"] }
|
||||||
serde = { version = "1.0.136", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
serde_json = "1.0.79"
|
serde_json = "1.0.79"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.31"
|
||||||
anyhow = "1.0.57"
|
anyhow = "1.0.57"
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.34"
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ tracing = "0.1.34"
|
|||||||
tokio = { version = "1.18.0", features = ["macros"] }
|
tokio = { version = "1.18.0", features = ["macros"] }
|
||||||
|
|
||||||
anyhow = "1.0.57"
|
anyhow = "1.0.57"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.31"
|
||||||
|
|
||||||
tera = "1.15.0"
|
tera = "1.15.0"
|
||||||
serde = { version = "1.0.136", features = ["derive"] }
|
serde = { version = "1.0.136", features = ["derive"] }
|
||||||
|
Reference in New Issue
Block a user