Refactor h1 dispatcher (#38)

* refactor h1 dispatcher

* Rename FrameReadTask/FramedWriteTask to ReadTask/WriteTask

* Make Encoder and Decoder methods immutable
This commit is contained in:
Nikolay Kim 2021-01-23 19:44:56 +06:00 committed by GitHub
parent 20f38402ab
commit 6c250c9a4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
55 changed files with 1585 additions and 2292 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-codec"
version = "0.2.2"
version = "0.3.0-b.1"
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"
either = "1.5.3"
either = "1.6.1"
futures-core = "0.3.12"
futures-sink = "0.3.12"
log = "0.4"
tokio = { version = "0.2.6", default-features=false }
[dev-dependencies]
ntex = "0.2.0-b.2"
ntex = "0.2.0-b.3"
futures = "0.3.12"