This commit is contained in:
Nikolay Kim 2024-11-04 13:43:15 +05:00
parent 91d54aaa34
commit d861ed7319
3 changed files with 10 additions and 6 deletions

View file

@ -31,15 +31,15 @@ glommio = ["ntex-rt/glommio", "ntex-glommio"]
async-std = ["ntex-rt/async-std", "ntex-async-std"]
[dependencies]
ntex-service = "3"
ntex-service = "3.3"
ntex-bytes = "0.1"
ntex-http = "0.1"
ntex-io = "2.5"
ntex-io = "2.8"
ntex-rt = "0.4.18"
ntex-util = "2"
ntex-util = "2.5"
ntex-tokio = { version = "0.5.2", optional = true }
ntex-compio = { version = "0.2.0", optional = true }
ntex-tokio = { version = "0.5.3", optional = true }
ntex-compio = { version = "0.2.1", optional = true }
ntex-glommio = { version = "0.5.2", optional = true }
ntex-async-std = { version = "0.5.1", optional = true }

View file

@ -1,5 +1,9 @@
# Changes
## [0.5.3] - 2024-11-04
* Use std::task::ready
## [0.5.2] - 2024-09-11
* Use new io api

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-tokio"
version = "0.5.2"
version = "0.5.3"
authors = ["ntex contributors <team@ntex.rs>"]
description = "tokio intergration for ntex framework"
keywords = ["network", "framework", "async", "futures"]