Remove From<io::Error> constraint from Encoder and Decoder traits

This commit is contained in:
Nikolay Kim 2020-08-10 14:04:40 +06:00
parent c4fe71d3cf
commit 8a6c476d02
6 changed files with 80 additions and 20 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-codec"
version = "0.1.2"
version = "0.2.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for encoding and decoding frames"
keywords = ["network", "framework", "async", "futures"]
@ -18,12 +18,12 @@ path = "src/lib.rs"
[dependencies]
bitflags = "1.2.1"
bytes = "0.5.6"
futures-core = "0.3.4"
futures-sink = "0.3.4"
tokio = { version = "0.2.6", default-features=false }
tokio-util = { version = "0.2.0", default-features=false, features=["codec"] }
either = "1.5.3"
futures-core = "0.3.5"
futures-sink = "0.3.5"
log = "0.4"
tokio = { version = "0.2.6", default-features=false }
[dev-dependencies]
ntex = "0.1.4"
futures = "0.3.4"
ntex = "0.1.20"
futures = "0.3.5"