ntex/ntex-util/Cargo.toml
Nikolay Kim 841ad736d4
Refactor framed io (#67)
* refactor framed io

* allow to add filters

* move io code to separate module

* add into_boxed()

* remove uneeded IO_STOP state

* simplify on_disconnect storage

* cleanup io state

* add io connector
2021-12-13 17:19:43 +06:00

31 lines
895 B
TOML

[package]
name = "ntex-util"
version = "0.1.2"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for ntex framework"
keywords = ["network", "framework", "async", "futures"]
homepage = "https://ntex.rs"
repository = "https://github.com/ntex-rs/ntex.git"
documentation = "https://docs.rs/ntex-util/"
categories = ["network-programming", "asynchronous"]
license = "MIT"
edition = "2018"
[lib]
name = "ntex_util"
path = "src/lib.rs"
[dependencies]
bitflags = "1.2"
log = "0.4"
slab = "0.4"
futures-timer = "3.0.2"
futures-core = { version = "0.3.18", default-features = false, features = ["alloc"] }
futures-sink = { version = "0.3.18", default-features = false, features = ["alloc"] }
pin-project-lite = "0.2.6"
[dev-dependencies]
ntex = "0.4.10"
ntex-rt = "0.3.2"
ntex-macros = "0.1.3"
futures-util = { version = "0.3.18", default-features = false, features = ["alloc"] }