diff --git a/lib/clif-backend/Cargo.toml b/lib/clif-backend/Cargo.toml index d8ff392b5..28fb0fbd2 100644 --- a/lib/clif-backend/Cargo.toml +++ b/lib/clif-backend/Cargo.toml @@ -1,11 +1,14 @@ [package] name = "wasmer-clif-backend" -version = "0.2.0" +version = "0.1.1" +description = "Wasmer runtime Cranelift compiler backend" +license = "MIT" authors = ["The Wasmer Engineering Team "] +repository = "https://github.com/wasmerio/wasmer" edition = "2018" [dependencies] -wasmer-runtime-core = { path = "../runtime-core" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.1.1" } cranelift-native = "0.26.0" cranelift-codegen = "0.26.0" cranelift-entity = "0.26.0" diff --git a/lib/emscripten/Cargo.toml b/lib/emscripten/Cargo.toml index 42fbaf9b1..e082c65cb 100644 --- a/lib/emscripten/Cargo.toml +++ b/lib/emscripten/Cargo.toml @@ -1,19 +1,22 @@ [package] name = "wasmer-emscripten" -version = "0.2.0" +version = "0.1.0" +description = "Wasmer runtime emscripten implementation library" +license = "MIT" authors = ["The Wasmer Engineering Team "] +repository = "https://github.com/wasmerio/wasmer" edition = "2018" build = "build/mod.rs" [dependencies] hashbrown = "0.1" -wasmer-runtime-core = { path = "../runtime-core" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.1.0" } libc = { git = "https://github.com/rust-lang/libc" } byteorder = "1" time = "0.1.41" [dev-dependencies] -wasmer-clif-backend = { path = "../clif-backend" } +wasmer-clif-backend = { path = "../clif-backend", version = "0.1.0" } wabt = "0.7.2" [build-dependencies] diff --git a/lib/runtime-core/Cargo.toml b/lib/runtime-core/Cargo.toml index a515c6ea2..76b1b8d96 100644 --- a/lib/runtime-core/Cargo.toml +++ b/lib/runtime-core/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "wasmer-runtime-core" -version = "0.2.0" +version = "0.1.1" +description = "Wasmer runtime core library" +license = "MIT" authors = ["The Wasmer Engineering Team "] +repository = "https://github.com/wasmerio/wasmer" edition = "2018" build = "build/mod.rs" @@ -21,7 +24,7 @@ errno = "0.2.4" wabt = "0.7.2" [dev-dependencies] -wasmer-clif-backend = { path = "../clif-backend" } +wasmer-clif-backend = { path = "../clif-backend", version = "0.1.1" } wabt = "0.7.2" field-offset = "0.1.1" diff --git a/lib/runtime/Cargo.toml b/lib/runtime/Cargo.toml index 14b88cc63..b7cafc895 100644 --- a/lib/runtime/Cargo.toml +++ b/lib/runtime/Cargo.toml @@ -1,12 +1,15 @@ [package] name = "wasmer-runtime" -version = "0.2.0" +version = "0.1.1" +description = "Wasmer runtime library" +license = "MIT" authors = ["The Wasmer Engineering Team "] +repository = "https://github.com/wasmerio/wasmer" edition = "2018" [dependencies] -wasmer-runtime-core = { path = "../runtime-core" } -wasmer-clif-backend = { path = "../clif-backend", optional = true } +wasmer-runtime-core = { path = "../runtime-core", version = "0.1.1" } +wasmer-clif-backend = { path = "../clif-backend", version = "0.1.1", optional = true } [features] default = ["wasmer-clif-backend"]