mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
30 lines
744 B
TOML
30 lines
744 B
TOML
[package]
|
|
name = "ntex-glommio"
|
|
version = "0.1.0"
|
|
authors = ["ntex contributors <team@ntex.rs>"]
|
|
description = "glommio intergration 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-rt-glommio/"
|
|
categories = ["network-programming", "asynchronous"]
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "ntex_glommio"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
ntex-bytes = "0.1.9"
|
|
ntex-io = "0.1.4"
|
|
ntex-util = "0.1.9"
|
|
async-oneshot = "0.5.0"
|
|
futures-lite = "1.12"
|
|
futures-channel = "0.3"
|
|
derive_more = "0.99"
|
|
log = "0.4"
|
|
pin-project-lite = "0.2"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
glommio = "0.6"
|