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.65 to 1.0.66
Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.65 to 1.0.66. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.65...1.0.66) --- 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
4c1f6bc3df
commit
ae5ee5ae4e
@ -9,7 +9,7 @@ license = "Apache-2.0"
|
||||
axum = "0.6.0-rc.2"
|
||||
tokio = { version = "1.21.2", features = ["full"] }
|
||||
futures-util = "0.3.25"
|
||||
anyhow = "1.0.65"
|
||||
anyhow = "1.0.66"
|
||||
clap = { version = "4.0.17", features = ["derive"] }
|
||||
dotenv = "0.15.0"
|
||||
tower = { version = "0.4.13", features = ["full"] }
|
||||
|
@ -11,7 +11,7 @@ tracing = { version = "0.1.37", features = ["log"] }
|
||||
async-trait = "0.1.58"
|
||||
|
||||
thiserror = "1.0.37"
|
||||
anyhow = "1.0.65"
|
||||
anyhow = "1.0.66"
|
||||
|
||||
schemars = { version = "0.8.11", features = ["url", "chrono"] }
|
||||
figment = { version = "0.10.8", features = ["env", "yaml", "test"] }
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.65"
|
||||
anyhow = "1.0.66"
|
||||
async-trait = "0.1.58"
|
||||
tokio = { version = "1.21.2", features = ["macros"] }
|
||||
tracing = "0.1.37"
|
||||
|
@ -14,7 +14,7 @@ tracing = "0.1.37"
|
||||
|
||||
# Error management
|
||||
thiserror = "1.0.37"
|
||||
anyhow = "1.0.65"
|
||||
anyhow = "1.0.66"
|
||||
|
||||
# Web server
|
||||
hyper = { version = "0.14.20", features = ["full"] }
|
||||
|
@ -33,7 +33,7 @@ webpki = { version = "0.22.0", optional = true }
|
||||
webpki-roots = { version = "0.22.5", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
anyhow = "1.0.65"
|
||||
anyhow = "1.0.66"
|
||||
serde = { version = "1.0.145", features = ["derive"] }
|
||||
tokio = { version = "1.21.2", features = ["macros", "rt"] }
|
||||
tower = { version = "0.4.13", features = ["util"] }
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.65"
|
||||
anyhow = "1.0.66"
|
||||
async-trait = "0.1.58"
|
||||
convert_case = "0.6.0"
|
||||
csv = "1.1.6"
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.65"
|
||||
anyhow = "1.0.66"
|
||||
base64ct = { version = "1.5.3", features = ["std"] }
|
||||
chrono = { version = "0.4.22", features = ["serde"] }
|
||||
digest = "0.10.5"
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.65"
|
||||
anyhow = "1.0.66"
|
||||
aead = { version = "0.5.1", features = ["std"] }
|
||||
const-oid = { version = "0.9.0", features = ["std"] }
|
||||
cookie = { version = "0.16.1", features = ["key-expansion", "private"] }
|
||||
|
@ -20,7 +20,7 @@ tracing = "0.1.37"
|
||||
libc = "0.2.135"
|
||||
|
||||
[dev-dependencies]
|
||||
anyhow = "1.0.65"
|
||||
anyhow = "1.0.66"
|
||||
rustls-pemfile = "1.0.1"
|
||||
tokio = { version = "1.21.2", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] }
|
||||
tokio-test = "0.4.2"
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.65"
|
||||
anyhow = "1.0.66"
|
||||
opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" }
|
||||
serde = { version = "1.0.145", features = ["derive"] }
|
||||
serde_json = "1.0.87"
|
||||
|
@ -12,7 +12,7 @@ chrono = { version = "0.4.22", features = ["serde"] }
|
||||
serde = { version = "1.0.145", features = ["derive"] }
|
||||
serde_json = "1.0.87"
|
||||
thiserror = "1.0.37"
|
||||
anyhow = "1.0.65"
|
||||
anyhow = "1.0.66"
|
||||
tracing = "0.1.37"
|
||||
|
||||
# Password hashing
|
||||
|
@ -12,7 +12,7 @@ dev = []
|
||||
tracing = "0.1.37"
|
||||
tokio = { version = "1.21.2", features = ["macros"] }
|
||||
|
||||
anyhow = "1.0.65"
|
||||
anyhow = "1.0.66"
|
||||
thiserror = "1.0.37"
|
||||
|
||||
tera = "1.17.1"
|
||||
|
Reference in New Issue
Block a user