Remove the old wast and wasm2obj commands. (#1372)
* Remove the old wast and wasm2obj commands. These are subsumed by the `wasmtime wast` and `wasmtime wasm2obj` commands. Fixes #827. * Remove wasm2obj install commands.
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
//! The `wasm2obj` command line tool.
|
||||
//!
|
||||
//! Translates WebAssembly modules to object files.
|
||||
//! See `wasm2obj --help` for usage.
|
||||
|
||||
use anyhow::Result;
|
||||
use structopt::StructOpt;
|
||||
use wasmtime_cli::commands::WasmToObjCommand;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
WasmToObjCommand::from_args().execute()
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
//! The `wast` command line tool.
|
||||
//!
|
||||
//! Runs WebAssembly test script files.
|
||||
//! See `wast --help` for usage.
|
||||
|
||||
use anyhow::Result;
|
||||
use structopt::StructOpt;
|
||||
use wasmtime_cli::commands::WastCommand;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
WastCommand::from_args().execute()
|
||||
}
|
||||
Reference in New Issue
Block a user