ntex/ntex-io/Cargo.toml
2023-01-27 11:54:55 +01:00

32 lines
722 B
TOML

[package]
name = "ntex-io"
version = "0.2.5"
authors = ["ntex contributors <team@ntex.rs>"]
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-io/"
categories = ["network-programming", "asynchronous"]
license = "MIT"
edition = "2018"
[lib]
name = "ntex_io"
path = "src/lib.rs"
[dependencies]
ntex-codec = "0.6.2"
ntex-bytes = "0.1.19"
ntex-util = "0.2.0"
ntex-service = "1.0.0"
bitflags = "1.3"
log = "0.4"
pin-project-lite = "0.2"
[dev-dependencies]
rand = "0.8"
env_logger = "0.10"
ntex = { version = "0.6.2", features = ["tokio"] }