diff --git a/Cargo.toml b/Cargo.toml index 850c15e..6b300dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "instant-acme" -version = "0.7.0" +version = "0.7.1" edition = "2021" rust-version = "1.67" license = "Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 274ffe4..f7fffee 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -791,7 +791,7 @@ where /// Object safe body trait #[async_trait] -pub trait BytesBody { +pub trait BytesBody: Send { /// Convert the body into [`Bytes`] /// /// This consumes the body. The behavior for calling this method multiple times is undefined.