Prepare release

This commit is contained in:
Nikolay Kim 2024-01-07 20:26:26 +06:00
parent 4950eb4167
commit 412944e973
20 changed files with 63 additions and 51 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.4.0-b.0] - 2024-01-07
* Use "async fn" in trait for Service definition
## [0.3.1] - 2023-11-12
* Optimize io read task

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-tokio"
version = "0.4.0"
version = "0.4.0-b.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "tokio intergration for ntex framework"
keywords = ["network", "framework", "async", "futures"]
@ -17,8 +17,8 @@ path = "src/lib.rs"
[dependencies]
ntex-bytes = "0.1.21"
ntex-io = "1.0"
ntex-util = "1.0"
ntex-io = "1.0.0-b.0"
ntex-util = "1.0.0-b.0"
log = "0.4"
pin-project-lite = "0.2"
tokio = { version = "1", default-features = false, features = ["rt", "net", "sync", "signal"] }