Use a cargo workspace

This commit is contained in:
Brandon Fish 2019-01-09 20:06:33 -06:00
parent 86785be641
commit c3a3461367
2 changed files with 5 additions and 0 deletions

2
Cargo.lock generated
View File

@ -1123,11 +1123,13 @@ name = "wasmer-runtime"
version = "0.1.0"
dependencies = [
"errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
"field-offset 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"hashbrown 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
"libffi 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
"nix 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
"page_size 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"wabt 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
"wasmer-clif-backend 0.1.0",
]
[[package]]

View File

@ -56,6 +56,9 @@ time = "0.1.41"
wasmer-clif-backend = { path = "lib/clif-backend" }
wasmer-runtime = { path = "lib/runtime" }
[workspace]
members = ["lib/clif-backend", "lib/runtime"]
[build-dependencies]
wabt = "0.7.2"
glob = "0.2.11"