1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-07 17:03:01 +03:00

Bump anyhow from 1.0.59 to 1.0.62

Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.59 to 1.0.62.
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.59...1.0.62)

---
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:
dependabot[bot]
2022-08-18 19:37:06 +00:00
committed by Quentin Gliech
parent b063e3de41
commit 31aa7b6913
10 changed files with 11 additions and 11 deletions

4
Cargo.lock generated
View File

@@ -108,9 +108,9 @@ dependencies = [
[[package]] [[package]]
name = "anyhow" name = "anyhow"
version = "1.0.59" version = "1.0.62"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c91f1f46651137be86f3a2b9a8359f9ab421d04d941c62b5982e1ca21113adf9" checksum = "1485d4d2cc45e7b201ee3767015c96faa5904387c9d87c6efdd0fb511f12d305"
[[package]] [[package]]
name = "argon2" name = "argon2"

View File

@@ -8,7 +8,7 @@ license = "Apache-2.0"
[dependencies] [dependencies]
tokio = { version = "1.20.1", features = ["full"] } tokio = { version = "1.20.1", features = ["full"] }
futures = "0.3.21" futures = "0.3.21"
anyhow = "1.0.59" anyhow = "1.0.62"
clap = { version = "3.2.16", features = ["derive"] } clap = { version = "3.2.16", features = ["derive"] }
dotenv = "0.15.0" dotenv = "0.15.0"
schemars = { version = "0.8.10", features = ["url", "chrono"] } schemars = { version = "0.8.10", features = ["url", "chrono"] }

View File

@@ -11,7 +11,7 @@ tracing = { version = "0.1.36", features = ["log"] }
async-trait = "0.1.57" async-trait = "0.1.57"
thiserror = "1.0.32" thiserror = "1.0.32"
anyhow = "1.0.59" anyhow = "1.0.62"
schemars = { version = "0.8.10", features = ["url", "chrono"] } schemars = { version = "0.8.10", features = ["url", "chrono"] }
figment = { version = "0.10.6", features = ["env", "yaml", "test"] } figment = { version = "0.10.6", features = ["env", "yaml", "test"] }

View File

@@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
[dependencies] [dependencies]
anyhow = "1.0.59" anyhow = "1.0.62"
async-trait = "0.1.57" async-trait = "0.1.57"
tokio = { version = "1.20.1", features = ["macros"] } tokio = { version = "1.20.1", features = ["macros"] }
tracing = "0.1.36" tracing = "0.1.36"

View File

@@ -14,7 +14,7 @@ tracing = "0.1.36"
# Error management # Error management
thiserror = "1.0.32" thiserror = "1.0.32"
anyhow = "1.0.59" anyhow = "1.0.62"
# Web server # Web server
hyper = { version = "0.14.20", features = ["full"] } hyper = { version = "0.14.20", features = ["full"] }

View File

@@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
[dependencies] [dependencies]
anyhow = "1.0.59" anyhow = "1.0.62"
async-trait = "0.1.57" async-trait = "0.1.57"
convert_case = "0.5.0" convert_case = "0.5.0"
csv = "1.1.6" csv = "1.1.6"

View File

@@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
[dependencies] [dependencies]
anyhow = "1.0.59" anyhow = "1.0.62"
async-trait = "0.1.57" async-trait = "0.1.57"
base64ct = { version = "1.5.1", features = ["std"] } base64ct = { version = "1.5.1", features = ["std"] }
chrono = { version = "0.4.20", features = ["serde"] } chrono = { version = "0.4.20", features = ["serde"] }

View File

@@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
[dependencies] [dependencies]
anyhow = "1.0.59" anyhow = "1.0.62"
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.142", features = ["derive"] } serde = { version = "1.0.142", features = ["derive"] }
serde_json = "1.0.83" serde_json = "1.0.83"

View File

@@ -12,7 +12,7 @@ chrono = { version = "0.4.20", features = ["serde"] }
serde = { version = "1.0.142", features = ["derive"] } serde = { version = "1.0.142", features = ["derive"] }
serde_json = "1.0.83" serde_json = "1.0.83"
thiserror = "1.0.32" thiserror = "1.0.32"
anyhow = "1.0.59" anyhow = "1.0.62"
tracing = "0.1.36" tracing = "0.1.36"
# Password hashing # Password hashing

View File

@@ -12,7 +12,7 @@ dev = []
tracing = "0.1.36" tracing = "0.1.36"
tokio = { version = "1.20.1", features = ["macros"] } tokio = { version = "1.20.1", features = ["macros"] }
anyhow = "1.0.59" anyhow = "1.0.62"
thiserror = "1.0.32" thiserror = "1.0.32"
tera = "1.16.0" tera = "1.16.0"