summaryrefslogtreecommitdiffstats
path: root/futures/src/lib.rs
blob: c25c0853f17fde8dd68d7f785e89abfd83bc485d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Asynchronous tasks for GUI programming, inspired by Elm.
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![deny(unused_results)]
#![forbid(unsafe_code)]
#![forbid(rust_2018_idioms)]
pub use futures;

mod command;
mod runtime;

pub mod executor;
pub mod subscription;

pub use command::Command;
pub use executor::Executor;
pub use runtime::Runtime;
pub use subscription::Subscription;