wasmer/src/commands.rs

22 lines
496 B
Rust
Raw Normal View History

mod cache;
2020-04-07 12:34:34 -07:00
#[cfg(all(target_os = "linux", feature = "loader-kernel"))]
mod kernel;
2020-04-15 16:31:05 -07:00
#[cfg(any(
feature = "backend-cranelift",
feature = "backend-llvm",
feature = "backend-singlepass"
))]
mod run;
mod selfupdate;
mod validate;
2020-04-07 12:34:34 -07:00
#[cfg(all(target_os = "linux", feature = "loader-kernel"))]
pub use kernel::*;
2020-04-15 16:31:05 -07:00
#[cfg(any(
feature = "backend-cranelift",
feature = "backend-llvm",
feature = "backend-singlepass"
))]
pub use run::*;
pub use {cache::*, selfupdate::*, validate::*};