winio/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! A single-threaded asynchronous GUI runtime, based on [`compio`] and ELM
//! design.

#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
#![warn(missing_docs)]

pub(crate) mod runtime;

pub(crate) mod ui;
pub use ui::export::*;

mod elm;
pub use elm::*;