diff options
author | 2020-01-19 09:06:48 +0100 | |
---|---|---|
committer | 2020-01-19 09:06:48 +0100 | |
commit | d50ff9b5d97d9c3d6c6c70a9b4efe764b6126c86 (patch) | |
tree | e5d176cddb6ef341d4050effc490e98988cf22d9 /core/src/lib.rs | |
parent | 32f7ca261f0655938ae7c8919599b020ddea8ff8 (diff) | |
download | iced-d50ff9b5d97d9c3d6c6c70a9b4efe764b6126c86.tar.gz iced-d50ff9b5d97d9c3d6c6c70a9b4efe764b6126c86.tar.bz2 iced-d50ff9b5d97d9c3d6c6c70a9b4efe764b6126c86.zip |
Implement `Runtime` and `Executor` in `iced_core`
They can be leveraged by shells to easily execute commands
and track subscriptions.
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r-- | core/src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs index 6f13c310..760acefe 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -44,3 +44,9 @@ pub mod subscription; #[cfg(feature = "subscription")] pub use subscription::Subscription; + +#[cfg(feature = "runtime")] +mod runtime; + +#[cfg(feature = "runtime")] +pub use runtime::Runtime; |