Update to latest betas

This commit is contained in:
Aode (Lion) 2021-10-20 18:22:22 -05:00
parent 53fc6eeb95
commit bfcf09225b
3 changed files with 6 additions and 8 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "http-signature-normalization-actix"
description = "An HTTP Signatures library that leaves the signing to you"
version = "0.5.0-beta.10"
version = "0.5.0-beta.11"
authors = ["asonix <asonix@asonix.dog>"]
license-file = "LICENSE"
readme = "README.md"
@ -27,10 +27,10 @@ name = "client"
required-features = ["client", "sha-2"]
[dependencies]
actix-http = { version = "3.0.0-beta.10", default-features = false }
actix-rt = "2.2.0"
actix-web = { version = "4.0.0-beta.8", default-features = false, optional = true }
awc = { version = "3.0.0-beta.7", default-features = false, optional = true }
actix-http = { version = "3.0.0-beta.11", default-features = false }
actix-rt = "2.3.0"
actix-web = { version = "4.0.0-beta.10", default-features = false, optional = true }
awc = { version = "3.0.0-beta.9", default-features = false, optional = true }
base64 = { version = "0.13", optional = true }
chrono = "0.4.6"
futures-util = { version = "0.3", default-features = false }
@ -44,7 +44,7 @@ tracing-error = "0.1"
tracing-futures = "0.2"
[dev-dependencies]
tracing-actix-web = { version = "0.4.0-beta.13" }
tracing-actix-web = { version = "0.4.0-beta.13", git = "https://github.com/asonix/tracing-actix-web", branch = "asonix/update-deps" }
tracing-subscriber = { version = "0.2", features = ["fmt"] }
[package.metadata.docs.rs]

View file

@ -112,7 +112,6 @@ where
impl FromRequest for DigestVerified {
type Error = VerifyError;
type Future = Ready<Result<Self, Self::Error>>;
type Config = ();
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future {
let res = req

View file

@ -242,7 +242,6 @@ impl HeaderKind {
impl FromRequest for SignatureVerified {
type Error = VerifyError;
type Future = Ready<Result<Self, Self::Error>>;
type Config = ();
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future {
let res = req