wasmer-compiler 7.3.0

Base compiler abstraction for Wasmer WebAssembly runtime
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cfg_select! {
    all(windows, target_arch = "x86_64") => {
        mod windows_x64;
        pub use self::windows_x64::*;
    }
    unix => {
        mod systemv;
        pub use self::systemv::*;
    }
    _ => {
        // Otherwise, we provide a dummy fallback without unwinding
        mod dummy;
        pub use self::dummy::DummyUnwindRegistry as UnwindRegistry;
    }
}