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 anyhow from 1.0.55 to 1.0.56
Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.55 to 1.0.56. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.55...1.0.56) --- updated-dependencies: - dependency-name: anyhow 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
12c62eab74
commit
d0807e9b3c
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -73,9 +73,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "anyhow"
|
name = "anyhow"
|
||||||
version = "1.0.55"
|
version = "1.0.56"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "159bb86af3a200e19a068f4224eae4c8bb2d0fa054c7e5d1cacd5cef95e684cd"
|
checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"backtrace",
|
"backtrace",
|
||||||
]
|
]
|
||||||
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "1.17.0", features = ["full"] }
|
tokio = { version = "1.17.0", features = ["full"] }
|
||||||
futures = "0.3.21"
|
futures = "0.3.21"
|
||||||
anyhow = { version = "1.0.55", features = ["backtrace"] }
|
anyhow = { version = "1.0.56", features = ["backtrace"] }
|
||||||
clap = { version = "3.1.6", features = ["derive"] }
|
clap = { version = "3.1.6", features = ["derive"] }
|
||||||
dotenv = "0.15.0"
|
dotenv = "0.15.0"
|
||||||
schemars = { version = "0.8.8", features = ["url", "chrono"] }
|
schemars = { version = "0.8.8", features = ["url", "chrono"] }
|
||||||
|
@ -11,7 +11,7 @@ tracing = { version = "0.1.31", features = ["log"] }
|
|||||||
async-trait = "0.1.52"
|
async-trait = "0.1.52"
|
||||||
|
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.30"
|
||||||
anyhow = "1.0.55"
|
anyhow = "1.0.56"
|
||||||
|
|
||||||
schemars = { version = "0.8.8", features = ["url", "chrono"] }
|
schemars = { version = "0.8.8", features = ["url", "chrono"] }
|
||||||
figment = { version = "0.10.6", features = ["env", "yaml", "test"] }
|
figment = { version = "0.10.6", features = ["env", "yaml", "test"] }
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.55"
|
anyhow = "1.0.56"
|
||||||
async-trait = "0.1.52"
|
async-trait = "0.1.52"
|
||||||
tokio = { version = "1.17.0", features = ["macros"] }
|
tokio = { version = "1.17.0", features = ["macros"] }
|
||||||
tracing = "0.1.31"
|
tracing = "0.1.31"
|
||||||
|
@ -17,7 +17,7 @@ tracing = "0.1.31"
|
|||||||
|
|
||||||
# Error management
|
# Error management
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.30"
|
||||||
anyhow = "1.0.55"
|
anyhow = "1.0.56"
|
||||||
|
|
||||||
# Web server
|
# Web server
|
||||||
warp = "0.3.2"
|
warp = "0.3.2"
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.55"
|
anyhow = "1.0.56"
|
||||||
async-trait = "0.1.52"
|
async-trait = "0.1.52"
|
||||||
convert_case = "0.5.0"
|
convert_case = "0.5.0"
|
||||||
csv = "1.1.6"
|
csv = "1.1.6"
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.55"
|
anyhow = "1.0.56"
|
||||||
async-trait = "0.1.52"
|
async-trait = "0.1.52"
|
||||||
base64ct = { version = "1.0.1", features = ["std"] }
|
base64ct = { version = "1.0.1", features = ["std"] }
|
||||||
chrono = { version = "0.4.19", features = ["serde"] }
|
chrono = { version = "0.4.19", features = ["serde"] }
|
||||||
|
@ -12,7 +12,7 @@ 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.30"
|
||||||
anyhow = "1.0.55"
|
anyhow = "1.0.56"
|
||||||
tracing = "0.1.31"
|
tracing = "0.1.31"
|
||||||
warp = "0.3.2"
|
warp = "0.3.2"
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ dev = []
|
|||||||
tracing = "0.1.31"
|
tracing = "0.1.31"
|
||||||
tokio = { version = "1.17.0", features = ["macros"] }
|
tokio = { version = "1.17.0", features = ["macros"] }
|
||||||
|
|
||||||
anyhow = "1.0.55"
|
anyhow = "1.0.56"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.30"
|
||||||
|
|
||||||
tera = "1.15.0"
|
tera = "1.15.0"
|
||||||
|
@ -12,7 +12,7 @@ cookie = "0.16.0"
|
|||||||
warp = "0.3.2"
|
warp = "0.3.2"
|
||||||
hyper = { version = "0.14.17", features = ["full"] }
|
hyper = { version = "0.14.17", features = ["full"] }
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.30"
|
||||||
anyhow = "1.0.55"
|
anyhow = "1.0.56"
|
||||||
sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] }
|
sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] }
|
||||||
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"] }
|
||||||
|
Reference in New Issue
Block a user