-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix io close for Framed * Fix connection shutdown for h1 dispatcher * Enable client disconnect for http server by default * Add connection disconnect timeout to framed service
- Loading branch information
Showing
21 changed files
with
528 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "ntex-codec" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Nikolay Kim <[email protected]>"] | ||
description = "Utilities for encoding and decoding frames" | ||
keywords = ["network", "framework", "async", "futures"] | ||
homepage = "https://ntex.rs" | ||
repository = "https://github.com/ntex-rs/ntex.git" | ||
documentation = "https://docs.rs/ntex-codec/" | ||
categories = ["network-programming", "asynchronous"] | ||
license = "MIT/Apache-2.0" | ||
license = "MIT" | ||
edition = "2018" | ||
|
||
[lib] | ||
|
@@ -20,6 +20,10 @@ bitflags = "1.2.1" | |
bytes = "0.5.4" | ||
futures-core = "0.3.4" | ||
futures-sink = "0.3.4" | ||
tokio = { version = "0.2.4", default-features=false } | ||
tokio = { version = "0.2.6", default-features=false } | ||
tokio-util = { version = "0.2.0", default-features=false, features=["codec"] } | ||
log = "0.4" | ||
log = "0.4" | ||
|
||
[dev-dependencies] | ||
ntex = "0.1.4" | ||
futures = "0.3.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.