mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Require Debug for filters
This commit is contained in:
parent
27f07b6fc4
commit
73b26136a9
4 changed files with 4 additions and 2 deletions
|
@ -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"]
|
||||
|
|
|
@ -375,6 +375,7 @@ mod tests {
|
|||
assert_eq!(waiter.await, ());
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
struct Counter {
|
||||
idx: usize,
|
||||
in_bytes: Rc<Cell<usize>>,
|
||||
|
|
|
@ -130,6 +130,7 @@ mod tests {
|
|||
assert_eq!(buf, b"RES".as_ref());
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub(crate) struct TestFilter;
|
||||
|
||||
impl FilterLayer for TestFilter {
|
||||
|
|
|
@ -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 }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue