Move crates/api to crates/wasmtime (#1693)

The `wasmtime` crate currently lives in `crates/api` for historical
reasons, because we once called it `wasmtime-api` crate. This creates a
stumbling block for new contributors.

As discussed on Zulip, rename the directory to `crates/wasmtime`.
This commit is contained in:
Josh Triplett
2020-05-13 14:04:31 -07:00
committed by GitHub
parent f5eab5225f
commit 08983bf39c
34 changed files with 14 additions and 14 deletions

View File

@@ -22,7 +22,7 @@ doc = false
[dependencies]
# Enable all supported architectures by default.
wasmtime = { path = "crates/api", version = "0.16.0", default-features = false }
wasmtime = { path = "crates/wasmtime", version = "0.16.0", default-features = false }
wasmtime-debug = { path = "crates/debug", version = "0.16.0" }
wasmtime-environ = { path = "crates/environ", version = "0.16.0" }
wasmtime-jit = { path = "crates/jit", version = "0.16.0" }