mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
chore: upgrade glommio to 0.8 (#196)
* chore: upgrade glommio to 0.8 * refactor: ntex-glommio Cargo.toml version
This commit is contained in:
parent
4768ec138a
commit
5ad93d7890
4 changed files with 16 additions and 4 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.2.3] - 2023-04-08
|
||||||
|
|
||||||
|
* Chore upgrade glommio to 0.8
|
||||||
|
|
||||||
## [0.2.2] - 2023-01-26
|
## [0.2.2] - 2023-01-26
|
||||||
|
|
||||||
* Update io api usage
|
* Update io api usage
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-glommio"
|
name = "ntex-glommio"
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
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 @@ futures-lite = "1.12"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[target.'cfg(target_os = "linux")'.dependencies]
|
||||||
glommio = "0.7"
|
glommio = "0.8"
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
|
||||||
|
## [0.4.9] - 2023-04-08
|
||||||
|
|
||||||
|
* Chore upgrade glommio to 0.8
|
||||||
|
|
||||||
## [0.4.8] - 2023-04-06
|
## [0.4.8] - 2023-04-06
|
||||||
|
|
||||||
* Add enter/exit fn for spawn_cbs #195
|
* Add enter/exit fn for spawn_cbs #195
|
||||||
|
|
|
@ -33,9 +33,12 @@ async-channel = "1.8.0"
|
||||||
futures-core = "0.3"
|
futures-core = "0.3"
|
||||||
log = "0.4"
|
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 }
|
async_std = { version = "1", package = "async-std", optional = true }
|
||||||
|
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[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 }
|
futures-channel = { version = "0.3", optional = true }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue