Fixed issues

This commit is contained in:
Syrus 2020-04-07 10:00:33 -07:00
parent cef3dfa3b0
commit f7c84c8a26
2 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,9 @@ use structopt::StructOpt;
#[cfg(feature = "loader-kernel")]
use wasmer_singlepass_backend::SinglePassCompiler;
#[cfg(feature = "loader-kernel")]
use wasmer_runtime_core::loader::Instance;
#[cfg(feature = "loader-kernel")]
use std::os::unix::net::{UnixListener, UnixStream};

View File

@ -1,4 +1,5 @@
//! When wasmer self-update is executed, this is what gets executed
#[cfg(not(target_os = "windows"))]
use std::process::{Command, Stdio};
pub struct SelfUpdate;