maycoon-core 0.5.1

Core Functionality for Maycoon UI => See the `maycoon` crate for more.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    if cfg!(not(any(feature = "tokio-runner", feature = "dummy-runner"))) {
        panic!(
            "No valid task runner feature selected. Please select a `-runner` feature (e.g. `tokio-runner`)."
        );
    }

    cfg_aliases::cfg_aliases! {
        web: { target_arch = "wasm32" },
        native: { not(target_arch = "wasm32") },
    }
}