You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-31 09:24:31 +03:00
build(deps): bump thiserror from 1.0.39 to 1.0.40
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.39 to 1.0.40. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.39...1.0.40) --- 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
4adfc91a7d
commit
f232e57a93
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -5845,22 +5845,22 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror"
|
name = "thiserror"
|
||||||
version = "1.0.39"
|
version = "1.0.40"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c"
|
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"thiserror-impl",
|
"thiserror-impl",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror-impl"
|
name = "thiserror-impl"
|
||||||
version = "1.0.39"
|
version = "1.0.40"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e"
|
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2 1.0.52",
|
"proc-macro2 1.0.52",
|
||||||
"quote 1.0.26",
|
"quote 1.0.26",
|
||||||
"syn 1.0.109",
|
"syn 2.0.4",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -22,7 +22,7 @@ serde = "1.0.158"
|
|||||||
serde_with = "2.3.1"
|
serde_with = "2.3.1"
|
||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
serde_json = "1.0.94"
|
serde_json = "1.0.94"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
tokio = "1.26.0"
|
tokio = "1.26.0"
|
||||||
tower = { version = "0.4.13", features = ["util"] }
|
tower = { version = "0.4.13", features = ["util"] }
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
|
@ -10,7 +10,7 @@ tokio = { version = "1.26.0", features = ["fs", "rt"] }
|
|||||||
tracing = { version = "0.1.37" }
|
tracing = { version = "0.1.37" }
|
||||||
async-trait = "0.1.67"
|
async-trait = "0.1.67"
|
||||||
|
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
anyhow = "1.0.69"
|
anyhow = "1.0.69"
|
||||||
|
|
||||||
camino = { version = "1.1.4", features = ["serde1"] }
|
camino = { version = "1.1.4", features = ["serde1"] }
|
||||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = "0.4.24"
|
chrono = "0.4.24"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
serde = "1.0.158"
|
serde = "1.0.158"
|
||||||
url = { version = "2.3.1", features = ["serde"] }
|
url = { version = "2.3.1", features = ["serde"] }
|
||||||
crc = "3.0.1"
|
crc = "3.0.1"
|
||||||
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1.67"
|
async-trait = "0.1.67"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
|
|
||||||
aws-sdk-sesv2 = { version = "0.24.0", default-features = false }
|
aws-sdk-sesv2 = { version = "0.24.0", default-features = false }
|
||||||
aws-config = { version = "0.54.1", default-features = false }
|
aws-config = { version = "0.54.1", default-features = false }
|
||||||
|
@ -11,7 +11,7 @@ async-graphql = { version = "5.0.6", features = ["chrono", "url"] }
|
|||||||
chrono = "0.4.24"
|
chrono = "0.4.24"
|
||||||
serde = { version = "1.0.158", features = ["derive"] }
|
serde = { version = "1.0.158", features = ["derive"] }
|
||||||
tokio = { version = "1.26.0", features = ["sync"] }
|
tokio = { version = "1.26.0", features = ["sync"] }
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
ulid = "1.0.0"
|
ulid = "1.0.0"
|
||||||
url = "2.3.1"
|
url = "2.3.1"
|
||||||
|
@ -14,7 +14,7 @@ futures-util = "0.3.27"
|
|||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
|
|
||||||
# Error management
|
# Error management
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
anyhow = "1.0.69"
|
anyhow = "1.0.69"
|
||||||
sentry = { version = "0.30.0", default-features = false }
|
sentry = { version = "0.30.0", default-features = false }
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ rustls-native-certs = { version = "0.6.2", optional = true }
|
|||||||
serde = "1.0.158"
|
serde = "1.0.158"
|
||||||
serde_json = "1.0.94"
|
serde_json = "1.0.94"
|
||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
tokio = { version = "1.26.0", features = ["sync", "parking_lot"], optional = true }
|
tokio = { version = "1.26.0", features = ["sync", "parking_lot"], optional = true }
|
||||||
tower = { version = "0.4.13", features = [] }
|
tower = { version = "0.4.13", features = [] }
|
||||||
tower-http = { version = "0.4.0", features = ["cors"] }
|
tower-http = { version = "0.4.0", features = ["cors"] }
|
||||||
|
@ -25,7 +25,7 @@ serde_json = "1.0.94"
|
|||||||
serde_with = { version = "2.3.1", features = ["base64"] }
|
serde_with = { version = "2.3.1", features = ["base64"] }
|
||||||
sha2 = { version = "0.10.6", features = ["oid"] }
|
sha2 = { version = "0.10.6", features = ["oid"] }
|
||||||
signature = "2.0.0"
|
signature = "2.0.0"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
url = { version = "2.3.1", features = ["serde"] }
|
url = { version = "2.3.1", features = ["serde"] }
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ rand = "0.8.5"
|
|||||||
rsa = { version = "0.9.0-pre.0", features = ["std", "pem"] }
|
rsa = { version = "0.9.0-pre.0", features = ["std", "pem"] }
|
||||||
sec1 = { version = "0.7.1", features = ["std"] }
|
sec1 = { version = "0.7.1", features = ["std"] }
|
||||||
spki = { version = "0.7.0", features = ["std"] }
|
spki = { version = "0.7.0", features = ["std"] }
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
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.6.0"
|
base64ct = "1.6.0"
|
||||||
|
@ -11,7 +11,7 @@ futures-util = "0.3.27"
|
|||||||
http-body = "0.4.5"
|
http-body = "0.4.5"
|
||||||
hyper = { version = "0.14.25", features = ["server", "http1", "http2", "tcp"] }
|
hyper = { version = "0.14.25", features = ["server", "http1", "http2", "tcp"] }
|
||||||
pin-project-lite = "0.2.9"
|
pin-project-lite = "0.2.9"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
tokio = { version = "1.26.0", features = ["net", "rt", "macros", "signal", "time"] }
|
tokio = { version = "1.26.0", features = ["net", "rt", "macros", "signal", "time"] }
|
||||||
tokio-rustls = "0.23.4"
|
tokio-rustls = "0.23.4"
|
||||||
tower-http = { version = "0.4.0", features = ["add-extension"] }
|
tower-http = { version = "0.4.0", features = ["add-extension"] }
|
||||||
|
@ -17,7 +17,7 @@ serde_with = { version = "2.3.1", features = ["chrono"] }
|
|||||||
chrono = "0.4.24"
|
chrono = "0.4.24"
|
||||||
sha2 = "0.10.6"
|
sha2 = "0.10.6"
|
||||||
data-encoding = "2.3.3"
|
data-encoding = "2.3.3"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
|
|
||||||
mas-iana = { path = "../iana" }
|
mas-iana = { path = "../iana" }
|
||||||
mas-jose = { path = "../jose" }
|
mas-jose = { path = "../jose" }
|
||||||
|
@ -34,7 +34,7 @@ serde = { version = "1.0.158", features = ["derive"] }
|
|||||||
serde_json = "1.0.94"
|
serde_json = "1.0.94"
|
||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
serde_with = "2.3.1"
|
serde_with = "2.3.1"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
tokio = { version = "1.26.0", features = ["rt", "macros", "rt-multi-thread"] }
|
tokio = { version = "1.26.0", features = ["rt", "macros", "rt-multi-thread"] }
|
||||||
tower = { version = "0.4.13", features = ["full"] }
|
tower = { version = "0.4.13", features = ["full"] }
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
|
@ -10,7 +10,7 @@ anyhow = "1.0.69"
|
|||||||
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.158", features = ["derive"] }
|
serde = { version = "1.0.158", features = ["derive"] }
|
||||||
serde_json = "1.0.94"
|
serde_json = "1.0.94"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
tokio = { version = "1.26.0", features = ["io-util"] }
|
tokio = { version = "1.26.0", features = ["io-util"] }
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
wasmtime = { version = "6.0.1", default-features = false, features = ["async", "cranelift"] }
|
wasmtime = { version = "6.0.1", default-features = false, features = ["async", "cranelift"] }
|
||||||
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.158", features = ["derive"] }
|
serde = { version = "1.0.158", features = ["derive"] }
|
||||||
serde_json = "1.0.94"
|
serde_json = "1.0.94"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
camino = { version = "1.1.4", features = ["serde1"] }
|
camino = { version = "1.1.4", features = ["serde1"] }
|
||||||
headers = "0.3.8"
|
headers = "0.3.8"
|
||||||
http = "0.2.9"
|
http = "0.2.9"
|
||||||
|
@ -11,7 +11,7 @@ sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "mig
|
|||||||
chrono = { version = "0.4.24", features = ["serde"] }
|
chrono = { version = "0.4.24", features = ["serde"] }
|
||||||
serde = { version = "1.0.158", features = ["derive"] }
|
serde = { version = "1.0.158", features = ["derive"] }
|
||||||
serde_json = "1.0.94"
|
serde_json = "1.0.94"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
futures-util = "0.3.27"
|
futures-util = "0.3.27"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1.67"
|
async-trait = "0.1.67"
|
||||||
chrono = "0.4.24"
|
chrono = "0.4.24"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
futures-util = "0.3.27"
|
futures-util = "0.3.27"
|
||||||
|
|
||||||
apalis-core = { version = "=0.4.0-alpha.5", features = ["tokio-comp"] }
|
apalis-core = { version = "=0.4.0-alpha.5", features = ["tokio-comp"] }
|
||||||
|
@ -15,7 +15,7 @@ chrono = "0.4.24"
|
|||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
rand_chacha = "0.3.1"
|
rand_chacha = "0.3.1"
|
||||||
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }
|
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.40"
|
||||||
tower = "0.4.13"
|
tower = "0.4.13"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.37"
|
||||||
tracing-opentelemetry = "0.18.0"
|
tracing-opentelemetry = "0.18.0"
|
||||||
|
@ -10,7 +10,7 @@ tracing = "0.1.37"
|
|||||||
tokio = { version = "1.26.0", features = ["macros", "rt"] }
|
tokio = { version = "1.26.0", features = ["macros", "rt"] }
|
||||||
|
|
||||||
anyhow = "1.0.69"
|
anyhow = "1.0.69"
|
||||||
thiserror = "1.0.39"
|
thiserror = "1.0.40"
|
||||||
|
|
||||||
tera = "1.18.1"
|
tera = "1.18.1"
|
||||||
serde = { version = "1.0.158", features = ["derive"] }
|
serde = { version = "1.0.158", features = ["derive"] }
|
||||||
|
Reference in New Issue
Block a user