Make package names consistent with cranelift's.

This commit is contained in:
Dan Gohman
2018-07-20 16:10:59 -07:00
parent 2608dd0c47
commit f3a6cab472
5 changed files with 18 additions and 28 deletions

View File

@@ -1,5 +1,5 @@
[package] [package]
name = "wasmtime_tools" name = "wasmtime-tools"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
version = "0.0.0" version = "0.0.0"
description = "Command-line interface for the wasmtime crate" description = "Command-line interface for the wasmtime crate"
@@ -22,9 +22,9 @@ cranelift-frontend = "0.16.1"
cranelift-reader = "0.16.1" cranelift-reader = "0.16.1"
cranelift-wasm = "0.16.1" cranelift-wasm = "0.16.1"
cranelift-native = "0.16.1" cranelift-native = "0.16.1"
wasmtime_runtime = { path = "lib/runtime" } wasmtime-runtime = { path = "lib/runtime" }
wasmtime_execute = { path = "lib/execute" } wasmtime-execute = { path = "lib/execute" }
wasmtime_obj = { path = "lib/obj" } wasmtime-obj = { path = "lib/obj" }
docopt = "1.0.0" docopt = "1.0.0"
serde = "1.0.55" serde = "1.0.55"
serde_derive = "1.0.55" serde_derive = "1.0.55"

View File

@@ -1,29 +1,19 @@
[package] [package]
name = "wasmtime_fuzz" name = "wasmtime-fuzz"
version = "0.0.1" version = "0.0.0"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
publish = false publish = false
[package.metadata] [package.metadata]
cargo-fuzz = true cargo-fuzz = true
[dependencies.wasmtime_runtime] [dependencies]
path = "../lib/runtime" wasmtime-runtime = { path = "../lib/runtime" }
wasmtime-execute = { path = "../lib/execute" }
[dependencies.wasmtime_execute] cranelift-codegen = "0.16.1"
path = "../lib/execute" cranelift-wasm = "0.16.1"
cranelift-native = "0.16.1"
[dependencies.cranelift-codegen] libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
version = "0.8.0"
[dependencies.cranelift-wasm]
version = "0.8.0"
[dependencies.cranelift-native]
version = "0.8.0"
[dependencies.libfuzzer-sys]
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
# Prevent this from interfering with workspaces # Prevent this from interfering with workspaces
[workspace] [workspace]

View File

@@ -1,5 +1,5 @@
[package] [package]
name = "wasmtime_execute" name = "wasmtime-execute"
version = "0.0.0" version = "0.0.0"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
publish = false publish = false
@@ -11,4 +11,4 @@ license = "Apache-2.0 WITH LLVM-exception"
cranelift-codegen = "0.16.1" cranelift-codegen = "0.16.1"
cranelift-wasm = "0.16.1" cranelift-wasm = "0.16.1"
region = "0.3.0" region = "0.3.0"
wasmtime_runtime = { path = "../runtime" } wasmtime-runtime = { path = "../runtime" }

View File

@@ -1,5 +1,5 @@
[package] [package]
name = "wasmtime_obj" name = "wasmtime-obj"
version = "0.0.0" version = "0.0.0"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
publish = false publish = false
@@ -8,5 +8,5 @@ license = "Apache-2.0 WITH LLVM-exception"
[dependencies] [dependencies]
cranelift-codegen = "0.16.1" cranelift-codegen = "0.16.1"
cranelift-wasm = "0.16.1" cranelift-wasm = "0.16.1"
wasmtime_runtime = { path = "../runtime" } wasmtime-runtime = { path = "../runtime" }
faerie = "0.4.4" faerie = "0.4.4"

View File

@@ -1,5 +1,5 @@
[package] [package]
name = "wasmtime_runtime" name = "wasmtime-runtime"
version = "0.0.0" version = "0.0.0"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
publish = false publish = false