2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-03 06:56:41 +00:00

update blocking

Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
This commit is contained in:
Marc-Antoine Perennou 2020-08-19 13:34:07 +02:00
parent dbc98faf1f
commit 1898f18a5c
2 changed files with 2 additions and 2 deletions

View file

@ -82,7 +82,7 @@ surf = { version = "1.0.3", optional = true }
[target.'cfg(not(target_os = "unknown"))'.dependencies]
async-executor = { version = "0.1.2", features = ["async-io"], optional = true }
async-io = { version = "0.1.8", optional = true }
blocking = { version = "0.5.0", optional = true }
blocking = { version = "0.5.2", optional = true }
futures-lite = { version = "0.1.8", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]

View file

@ -35,5 +35,5 @@ where
F: FnOnce() -> T + Send + 'static,
T: Send + 'static,
{
task::spawn(async move { blocking::unblock!(f()) })
task::spawn(blocking::unblock(f))
}