Split the runtime and execution code into separate crates.

This commit is contained in:
Dan Gohman
2017-10-03 14:57:52 -07:00
parent 6ded83332f
commit 23bafd1218
13 changed files with 62 additions and 40 deletions

11
lib/obj/Cargo.toml Normal file
View File

@@ -0,0 +1,11 @@
[package]
name = "wasmstandalone_obj"
version = "0.0.0"
authors = ["The Cretonne Project Developers"]
publish = false
[dependencies]
cretonne = { git = "https://github.com/stoklund/cretonne.git" }
cretonne-wasm = { git = "https://github.com/stoklund/cretonne.git" }
wasmstandalone_runtime = { path = "../runtime" }
faerie = { git = "https://github.com/m4b/faerie" }