summaryrefslogtreecommitdiffstats
path: root/futures/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2022-01-31 17:01:19 +0700
committerLibravatar GitHub <noreply@github.com>2022-01-31 17:01:19 +0700
commite4ef29ef20724c3d1a4beff39ddfdaf6d45f9683 (patch)
tree6e0c9c38366c9d70204c80fc66bd8e8a7652cf52 /futures/src/lib.rs
parentc75ed37148b019358b0297171cf31b2577eeb9ae (diff)
parent6f604ab3995cb345aacf183a569589988aa3ad1f (diff)
downloadiced-e4ef29ef20724c3d1a4beff39ddfdaf6d45f9683.tar.gz
iced-e4ef29ef20724c3d1a4beff39ddfdaf6d45f9683.tar.bz2
iced-e4ef29ef20724c3d1a4beff39ddfdaf6d45f9683.zip
Merge pull request #1096 from pacmancoder/feat/wgpu-webgl
Experimental WebGL wgpu backend support
Diffstat (limited to 'futures/src/lib.rs')
-rw-r--r--futures/src/lib.rs17
1 files changed, 3 insertions, 14 deletions
diff --git a/futures/src/lib.rs b/futures/src/lib.rs
index dbcb8aca..b0b2f6ce 100644
--- a/futures/src/lib.rs
+++ b/futures/src/lib.rs
@@ -14,27 +14,16 @@
pub use futures;
mod command;
+mod maybe_send;
mod runtime;
+pub mod backend;
pub mod executor;
pub mod subscription;
-#[cfg(all(
- any(feature = "tokio", feature = "async-std", feature = "smol"),
- not(target_arch = "wasm32")
-))]
-#[cfg_attr(
- docsrs,
- doc(cfg(any(
- feature = "tokio",
- feature = "async-std",
- feature = "smol"
- )))
-)]
-pub mod time;
-
pub use command::Command;
pub use executor::Executor;
+pub use maybe_send::MaybeSend;
pub use platform::*;
pub use runtime::Runtime;
pub use subscription::Subscription;