Make digest middleware clone

This commit is contained in:
asonix 2020-07-06 10:16:41 -05:00
parent cd1a824ebb
commit 7db643fc0c
2 changed files with 2 additions and 1 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.4.0-alpha.1"
version = "0.4.0-alpha.2"
authors = ["asonix <asonix@asonix.dog>"]
license-file = "LICENSE"
readme = "README.md"

View file

@ -27,6 +27,7 @@ use std::{
/// This is only required when the [`VerifyDigest`] middleware is set to optional
pub struct DigestVerified;
#[derive(Clone, Debug)]
/// The VerifyDigest middleware
///
/// ```rust,ignore