mirror of
https://git.asonix.dog/asonix/http-signature-normalization.git
synced 2024-11-22 01:11:00 +00:00
Make digest middleware clone
This commit is contained in:
parent
cd1a824ebb
commit
7db643fc0c
2 changed files with 2 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "http-signature-normalization-actix"
|
name = "http-signature-normalization-actix"
|
||||||
description = "An HTTP Signatures library that leaves the signing to you"
|
description = "An HTTP Signatures library that leaves the signing to you"
|
||||||
version = "0.4.0-alpha.1"
|
version = "0.4.0-alpha.2"
|
||||||
authors = ["asonix <asonix@asonix.dog>"]
|
authors = ["asonix <asonix@asonix.dog>"]
|
||||||
license-file = "LICENSE"
|
license-file = "LICENSE"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -27,6 +27,7 @@ use std::{
|
||||||
/// This is only required when the [`VerifyDigest`] middleware is set to optional
|
/// This is only required when the [`VerifyDigest`] middleware is set to optional
|
||||||
pub struct DigestVerified;
|
pub struct DigestVerified;
|
||||||
|
|
||||||
|
#[derive(Clone, Debug)]
|
||||||
/// The VerifyDigest middleware
|
/// The VerifyDigest middleware
|
||||||
///
|
///
|
||||||
/// ```rust,ignore
|
/// ```rust,ignore
|
||||||
|
|
Loading…
Reference in a new issue