Require Debug for filters

This commit is contained in:
Nikolay Kim 2023-09-12 17:46:34 +06:00
parent 27f07b6fc4
commit 73b26136a9
4 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-io"
version = "0.3.3"
version = "0.3.4"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for encoding and decoding frames"
keywords = ["network", "framework", "async", "futures"]

View file

@ -375,6 +375,7 @@ mod tests {
assert_eq!(waiter.await, ());
}
#[derive(Debug)]
struct Counter {
idx: usize,
in_bytes: Rc<Cell<usize>>,

View file

@ -130,6 +130,7 @@ mod tests {
assert_eq!(buf, b"RES".as_ref());
}
#[derive(Debug)]
pub(crate) struct TestFilter;
impl FilterLayer for TestFilter {

View file

@ -58,7 +58,7 @@ ntex-util = "0.3.2"
ntex-bytes = "0.1.19"
ntex-h2 = "0.3.2"
ntex-rt = "0.4.9"
ntex-io = "0.3.3"
ntex-io = "0.3.4"
ntex-tls = "0.3.1"
ntex-tokio = { version = "0.3.0", optional = true }
ntex-glommio = { version = "0.3.0", optional = true }