mirror of
https://github.com/fluencelabs/wasmer
synced 2025-05-17 04:51:18 +00:00
13 lines
207 B
Rust
13 lines
207 B
Rust
#![deny(
|
|
dead_code,
|
|
unused_imports,
|
|
unused_variables,
|
|
unused_unsafe,
|
|
unreachable_patterns
|
|
)]
|
|
#[cfg(windows)]
|
|
mod exception_handling;
|
|
|
|
#[cfg(windows)]
|
|
pub use self::exception_handling::*;
|