mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Glommio runtime support (#94)
* add glommio runtime support * optional compilation for glommio
This commit is contained in:
parent
429073f9ff
commit
450332144d
18 changed files with 1024 additions and 10 deletions
30
ntex-glommio/Cargo.toml
Normal file
30
ntex-glommio/Cargo.toml
Normal 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"
|
Loading…
Add table
Add a link
Reference in a new issue