workflow-egui 0.18.0

Components for EGUI-based applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cfg_if::cfg_if! {
    if #[cfg(not(target_arch = "wasm32"))] {
        pub mod signals;
        pub mod panic;
    } else {
        // ...
    }
}

pub mod channel;
pub mod events;
pub mod payload;
mod repaint;
pub mod service;

#[allow(clippy::module_inception)]
mod runtime;
pub use runtime::*;