Sync wasmtime and remove wasm32 deprecated module (#165)
Since `wasmtime` now uses `wasi` and `wasi32` modules, we can now safely remove the `wasm32` module. This commit also updates `wasmtime` to the latest upstream.
This commit is contained in:
@@ -40,10 +40,3 @@ pub use sys::preopen_dir;
|
||||
|
||||
pub type Error = error::Error;
|
||||
pub(crate) type Result<T> = std::result::Result<T, Error>;
|
||||
|
||||
// We can remove this once Wasmtime is updated.
|
||||
#[deprecated = "wasm32 is deprecated; use wasi or wasi32 instead"]
|
||||
pub mod wasm32 {
|
||||
pub use crate::wasi::*;
|
||||
pub use crate::wasi32::*;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user