mirror of
https://git.asonix.dog/asonix/http-signature-normalization.git
synced 2024-11-13 05:01:17 +00:00
Update to latest betas
This commit is contained in:
parent
53fc6eeb95
commit
bfcf09225b
3 changed files with 6 additions and 8 deletions
|
@ -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]
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue