chore: upgrade glommio to 0.8 (#196)

* chore: upgrade glommio to 0.8

* refactor: ntex-glommio Cargo.toml version
This commit is contained in:
leone 2023-04-11 14:13:20 +02:00 committed by GitHub
parent 4768ec138a
commit 5ad93d7890
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 4 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.2.3] - 2023-04-08
* Chore upgrade glommio to 0.8
## [0.2.2] - 2023-01-26
* Update io api usage

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-glommio"
version = "0.2.2"
version = "0.2.3"
authors = ["ntex contributors <team@ntex.rs>"]
description = "glommio intergration for ntex framework"
keywords = ["network", "framework", "async", "futures"]
@ -24,4 +24,4 @@ futures-lite = "1.12"
log = "0.4"
[target.'cfg(target_os = "linux")'.dependencies]
glommio = "0.7"
glommio = "0.8"

View file

@ -1,5 +1,10 @@
# Changes
## [0.4.9] - 2023-04-08
* Chore upgrade glommio to 0.8
## [0.4.8] - 2023-04-06
* Add enter/exit fn for spawn_cbs #195

View file

@ -33,9 +33,12 @@ async-channel = "1.8.0"
futures-core = "0.3"
log = "0.4"
tok-io = { version = "1", package = "tokio", default-features = false, features = ["rt", "net"], optional = true }
tok-io = { version = "1", package = "tokio", default-features = false, features = [
"rt",
"net",
], optional = true }
async_std = { version = "1", package = "async-std", optional = true }
[target.'cfg(target_os = "linux")'.dependencies]
glomm-io = { version = "0.7", package = "glommio", optional = true }
glomm-io = { version = "0.8", package = "glommio", optional = true }
futures-channel = { version = "0.3", optional = true }