Glommio runtime support (#94)

* add glommio runtime support

* optional compilation for glommio
This commit is contained in:
Nikolay Kim 2022-01-17 01:03:15 +06:00 committed by GitHub
parent 429073f9ff
commit 450332144d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 1024 additions and 10 deletions

30
ntex-glommio/Cargo.toml Normal file
View file

@ -0,0 +1,30 @@
[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"