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.34 to 1.0.35
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.34 to 1.0.35. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.34...1.0.35) --- 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
2b570158ea
commit
b3e44b4241
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -4505,18 +4505,18 @@ checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror"
|
name = "thiserror"
|
||||||
version = "1.0.34"
|
version = "1.0.35"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8c1b05ca9d106ba7d2e31a9dab4a64e7be2cce415321966ea3132c49a656e252"
|
checksum = "c53f98874615aea268107765aa1ed8f6116782501d18e53d08b471733bea6c85"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"thiserror-impl",
|
"thiserror-impl",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror-impl"
|
name = "thiserror-impl"
|
||||||
version = "1.0.34"
|
version = "1.0.35"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e8f2591983642de85c921015f3f070c665a197ed69e417af436115e3a1407487"
|
checksum = "f8b463991b4eab2d801e724172285ec4195c650e8ec79b149e6c2a8e6dd3f783"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
@ -23,7 +23,7 @@ serde_with = "2.0.1"
|
|||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
serde_json = "1.0.85"
|
serde_json = "1.0.85"
|
||||||
sqlx = "0.6.1"
|
sqlx = "0.6.1"
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.35"
|
||||||
tokio = "1.20.1"
|
tokio = "1.20.1"
|
||||||
tower = { version = "0.4.13", features = ["util"] }
|
tower = { version = "0.4.13", features = ["util"] }
|
||||||
tracing = "0.1.36"
|
tracing = "0.1.36"
|
||||||
|
@ -10,7 +10,7 @@ tokio = { version = "1.20.1", features = [] }
|
|||||||
tracing = { version = "0.1.36", features = ["log"] }
|
tracing = { version = "0.1.36", features = ["log"] }
|
||||||
async-trait = "0.1.57"
|
async-trait = "0.1.57"
|
||||||
|
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.35"
|
||||||
anyhow = "1.0.64"
|
anyhow = "1.0.64"
|
||||||
|
|
||||||
schemars = { version = "0.8.10", features = ["url", "chrono"] }
|
schemars = { version = "0.8.10", features = ["url", "chrono"] }
|
||||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = "0.4.22"
|
chrono = "0.4.22"
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.35"
|
||||||
serde = "1.0.144"
|
serde = "1.0.144"
|
||||||
url = { version = "2.3.1", features = ["serde"] }
|
url = { version = "2.3.1", features = ["serde"] }
|
||||||
crc = "3.0.0"
|
crc = "3.0.0"
|
||||||
|
@ -13,7 +13,7 @@ tokio = { version = "1.20.1", features = ["macros"] }
|
|||||||
tracing = "0.1.36"
|
tracing = "0.1.36"
|
||||||
|
|
||||||
# Error management
|
# Error management
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.35"
|
||||||
anyhow = "1.0.64"
|
anyhow = "1.0.64"
|
||||||
|
|
||||||
# Web server
|
# Web server
|
||||||
|
@ -22,7 +22,7 @@ rustls = "0.20.6"
|
|||||||
serde = "1.0.144"
|
serde = "1.0.144"
|
||||||
serde_json = "1.0.85"
|
serde_json = "1.0.85"
|
||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.35"
|
||||||
tokio = { version = "1.20.1", optional = true }
|
tokio = { version = "1.20.1", optional = true }
|
||||||
tower = { version = "0.4.13", features = ["timeout", "limit"] }
|
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"] }
|
tower-http = { version = "0.3.4", features = ["follow-redirect", "decompression-full", "set-header", "compression-full", "cors", "util"] }
|
||||||
|
@ -26,7 +26,7 @@ serde_json = "1.0.85"
|
|||||||
serde_with = { version = "2.0.1", features = ["base64"] }
|
serde_with = { version = "2.0.1", features = ["base64"] }
|
||||||
sha2 = "0.10.5"
|
sha2 = "0.10.5"
|
||||||
signature = "1.6.1"
|
signature = "1.6.1"
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.35"
|
||||||
tracing = "0.1.36"
|
tracing = "0.1.36"
|
||||||
url = { version = "2.3.1", features = ["serde"] }
|
url = { version = "2.3.1", features = ["serde"] }
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ rand = "0.8.5"
|
|||||||
rsa = { version = "0.7.0-pre", features = ["std", "pem"] }
|
rsa = { version = "0.7.0-pre", features = ["std", "pem"] }
|
||||||
sec1 = { version = "0.3.0", features = ["std"] }
|
sec1 = { version = "0.3.0", features = ["std"] }
|
||||||
spki = { version = "0.6.0", features = ["std"] }
|
spki = { version = "0.6.0", features = ["std"] }
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.35"
|
||||||
generic-array = "0.14.6"
|
generic-array = "0.14.6"
|
||||||
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
|
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
|
||||||
base64ct = "1.5.2"
|
base64ct = "1.5.2"
|
||||||
|
@ -17,7 +17,7 @@ serde_with = { version = "2.0.1", features = ["chrono"] }
|
|||||||
chrono = "0.4.22"
|
chrono = "0.4.22"
|
||||||
sha2 = "0.10.5"
|
sha2 = "0.10.5"
|
||||||
data-encoding = "2.3.2"
|
data-encoding = "2.3.2"
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.35"
|
||||||
itertools = "0.10.3"
|
itertools = "0.10.3"
|
||||||
|
|
||||||
mas-iana = { path = "../iana" }
|
mas-iana = { path = "../iana" }
|
||||||
|
@ -10,7 +10,7 @@ anyhow = "1.0.64"
|
|||||||
opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" }
|
opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" }
|
||||||
serde = { version = "1.0.144", features = ["derive"] }
|
serde = { version = "1.0.144", features = ["derive"] }
|
||||||
serde_json = "1.0.85"
|
serde_json = "1.0.85"
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.35"
|
||||||
tokio = { version = "1.20.1", features = ["io-util", "rt"] }
|
tokio = { version = "1.20.1", features = ["io-util", "rt"] }
|
||||||
tracing = "0.1.36"
|
tracing = "0.1.36"
|
||||||
wasmtime = "0.40.1"
|
wasmtime = "0.40.1"
|
||||||
|
@ -11,7 +11,7 @@ sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres", "mig
|
|||||||
chrono = { version = "0.4.22", features = ["serde"] }
|
chrono = { version = "0.4.22", features = ["serde"] }
|
||||||
serde = { version = "1.0.144", features = ["derive"] }
|
serde = { version = "1.0.144", features = ["derive"] }
|
||||||
serde_json = "1.0.85"
|
serde_json = "1.0.85"
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.35"
|
||||||
anyhow = "1.0.64"
|
anyhow = "1.0.64"
|
||||||
tracing = "0.1.36"
|
tracing = "0.1.36"
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ tracing = "0.1.36"
|
|||||||
tokio = { version = "1.20.1", features = ["macros"] }
|
tokio = { version = "1.20.1", features = ["macros"] }
|
||||||
|
|
||||||
anyhow = "1.0.64"
|
anyhow = "1.0.64"
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.35"
|
||||||
|
|
||||||
tera = "1.17.0"
|
tera = "1.17.0"
|
||||||
serde = { version = "1.0.144", features = ["derive"] }
|
serde = { version = "1.0.144", features = ["derive"] }
|
||||||
|
Reference in New Issue
Block a user