Split iced_futures into different backend implementations

This commit is contained in:
Héctor Ramón Jiménez 2022-01-28 18:24:07 +07:00
parent 5dab5a327e
commit 167be45a7d
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
19 changed files with 280 additions and 318 deletions

10
futures/src/backend.rs Normal file
View file

@ -0,0 +1,10 @@
//! The underlying implementations of the `iced_futures` contract!
pub mod null;
#[cfg(not(target_arch = "wasm32"))]
pub mod native;
#[cfg(target_arch = "wasm32")]
pub mod wasm;
pub mod default;