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:
Dan Gohman
2020-03-20 16:30:37 -07:00
committed by GitHub
parent ff18c5b05c
commit a7d84afeb4
5 changed files with 6 additions and 34 deletions

View File

@@ -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()
}

View File

@@ -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()
}