diff --git a/Cargo.toml b/Cargo.toml index 782ac5e242..ea5b991490 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "wasmtime-tools" +name = "wasmtime" authors = ["The Wasmtime Project Developers"] version = "0.1.0" description = "Command-line interface for the wasmtime crate" diff --git a/publish-all.sh b/publish-all.sh index 471f92ea96..2a738e6cb8 100755 --- a/publish-all.sh +++ b/publish-all.sh @@ -13,7 +13,7 @@ version="0.1.0" # Update all of the Cargo.toml files. # -# The main Cargo.toml in the top-level directory is the wasmtime-tools crate which we don't publish. +# The main Cargo.toml in the top-level directory is the wasmtime crate which we don't publish. echo "Updating crate versions to $version" for crate in . wasmtime-*; do # Update the version number of this crate to $version. diff --git a/test-all.sh b/test-all.sh index eea5667a77..a5789ca313 100755 --- a/test-all.sh +++ b/test-all.sh @@ -51,7 +51,7 @@ banner "Rust unit tests" # run the lightbeam tests below if nightly is available. #RUST_BACKTRACE=1 cargo test --all RUST_BACKTRACE=1 cargo test \ - --package wasmtime-tools \ + --package wasmtime \ --package wasmtime-wasi \ --package wasmtime-wast \ --package wasmtime-debug \