mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
[BUGFIX] async-std cannot find function block_on on windows (#122)
* [BUGFIX] Fixed cannot find function block_on for async-std feature on windows * [UPDATE] ntex-rt/CHANGES.md
This commit is contained in:
parent
88c7fd3116
commit
df3d29387f
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.4.6] - 2022-06-29
|
||||||
|
|
||||||
|
* Fix async-std cannot find function block_on on windows
|
||||||
|
|
||||||
## [0.4.5] - 2022-06-20
|
## [0.4.5] - 2022-06-20
|
||||||
|
|
||||||
* Add spawn_blocking stub
|
* Add spawn_blocking stub
|
||||||
|
|
|
@ -242,7 +242,6 @@ pub use self::tokio::*;
|
||||||
not(feature = "tokio"),
|
not(feature = "tokio"),
|
||||||
not(feature = "glommio"),
|
not(feature = "glommio"),
|
||||||
feature = "async-std",
|
feature = "async-std",
|
||||||
target_os = "linux"
|
|
||||||
))]
|
))]
|
||||||
pub use self::asyncstd::*;
|
pub use self::asyncstd::*;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue