Migrate to tokio 1.0 (#41)

* migrate to tokio 1.x

* update tests
This commit is contained in:
Nikolay Kim 2021-02-24 00:12:44 +06:00 committed by GitHub
parent ddd973b808
commit e04ae7cc86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
46 changed files with 557 additions and 807 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-rt"
version = "0.1.2"
version = "0.2.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "ntex runtime"
keywords = ["network", "framework", "async", "futures"]
@ -17,5 +17,5 @@ path = "src/lib.rs"
[dependencies]
ntex-rt-macros = "0.1.0"
futures = "0.3.12"
tokio = { version = "0.2.6", default-features=false, features = ["rt-core", "rt-util", "io-driver", "blocking", "tcp", "uds", "udp", "time", "signal", "stream"] }
futures = "0.3.13"
tokio = { version = "1", default-features=false, features = ["rt", "net", "time", "signal"] }