zng-view-api 0.13.5

Part of the zng project.
Documentation
1
2
3
4
5
6
7
8
9
#![recursion_limit = "256"]

fn main() {
    cfg_aliases::cfg_aliases! {
        wasm: { target_arch = "wasm32" },
        android: { target_os = "android" },
        ipc: { all(feature="ipc", not(any(android, wasm))) },
    }
}