Upgrade to glommio 0.9 (#427)

This commit is contained in:
Nikolay Kim 2024-09-24 14:23:19 +05:00 committed by GitHub
parent 302e7951d6
commit b0baf01576
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 additions and 4 deletions

View file

@ -1,5 +1,9 @@
# Changes # Changes
## [0.5.2] - 2024-09-xx
* Update to glommio v0.9
## [0.4.0] - 2024-01-09 ## [0.4.0] - 2024-01-09
* Release * Release

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ntex-glommio" name = "ntex-glommio"
version = "0.5.1" version = "0.5.2"
authors = ["ntex contributors <team@ntex.rs>"] authors = ["ntex contributors <team@ntex.rs>"]
description = "glommio intergration for ntex framework" description = "glommio intergration for ntex framework"
keywords = ["network", "framework", "async", "futures"] keywords = ["network", "framework", "async", "futures"]
@ -24,4 +24,4 @@ log = "0.4"
oneshot = { version = "0.1", default-features = false, features = ["async"] } oneshot = { version = "0.1", default-features = false, features = ["async"] }
[target.'cfg(target_os = "linux")'.dependencies] [target.'cfg(target_os = "linux")'.dependencies]
glommio = "0.8" glommio = "0.9"

View file

@ -1,5 +1,9 @@
# Changes # Changes
## [0.4.18] - 2024-09-xx
* Update to glommio v0.9
## [0.4.17] - 2024-09-24 ## [0.4.17] - 2024-09-24
* Update to compio v0.12 * Update to compio v0.12

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ntex-rt" name = "ntex-rt"
version = "0.4.17" version = "0.4.18"
authors = ["ntex contributors <team@ntex.rs>"] authors = ["ntex contributors <team@ntex.rs>"]
description = "ntex runtime" description = "ntex runtime"
keywords = ["network", "framework", "async", "futures"] keywords = ["network", "framework", "async", "futures"]
@ -46,5 +46,5 @@ tok-io = { version = "1", package = "tokio", default-features = false, features
], optional = true } ], optional = true }
[target.'cfg(target_os = "linux")'.dependencies] [target.'cfg(target_os = "linux")'.dependencies]
glomm-io = { version = "0.8", package = "glommio", optional = true } glomm-io = { version = "0.9", package = "glommio", optional = true }
futures-channel = { version = "0.3", optional = true } futures-channel = { version = "0.3", optional = true }