mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
* 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
29 lines
764 B
TOML
29 lines
764 B
TOML
[package]
|
|
name = "ntex-codec"
|
|
version = "0.1.1"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
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"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "ntex_codec"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
bitflags = "1.2.1"
|
|
bytes = "0.5.4"
|
|
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"] }
|
|
log = "0.4"
|
|
|
|
[dev-dependencies]
|
|
ntex = "0.1.4"
|
|
futures = "0.3.4"
|