-
Notifications
You must be signed in to change notification settings - Fork 829
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update crate version numbers to 0.3.0
- Loading branch information
Mark McCaskey
committed
Apr 12, 2019
1 parent
97059a1
commit d507253
Showing
13 changed files
with
87 additions
and
70 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "wasmer-clif-backend" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
description = "Wasmer runtime Cranelift compiler backend" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.1" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" } | ||
cranelift-native = "0.30.0" | ||
cranelift-codegen = "0.30.0" | ||
cranelift-entity = "0.30.0" | ||
|
@@ -33,7 +33,7 @@ version = "0.0.7" | |
|
||
[target.'cfg(windows)'.dependencies] | ||
winapi = { version = "0.3", features = ["errhandlingapi", "minwindef", "minwinbase", "winnt"] } | ||
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.2.0" } | ||
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.3.0" } | ||
|
||
[features] | ||
debug = ["wasmer-runtime-core/debug"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-emscripten" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
description = "Wasmer runtime emscripten implementation library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -9,14 +9,14 @@ edition = "2018" | |
build = "build/mod.rs" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.1" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" } | ||
lazy_static = "1.2.0" | ||
libc = "0.2.49" | ||
byteorder = "1" | ||
time = "0.1.41" | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.2.0" } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.1.0", optional = true } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.1.0", optional = true } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.3.0" } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.3.0", optional = true } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.3.0", optional = true } | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
rand = "0.6" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "wasmer-llvm-backend" | ||
version = "0.1.0" | ||
version = "0.3.0" | ||
authors = ["Lachlan Sneff <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.1" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" } | ||
inkwell = { git = "https://github.com/wasmerio/inkwell", branch = "llvm7-0" } | ||
wasmparser = "0.28.0" | ||
hashbrown = "0.1.8" | ||
|
@@ -27,4 +27,4 @@ wabt = "0.7.4" | |
|
||
[features] | ||
debug = ["wasmer-runtime-core/debug"] | ||
disasm = ["capstone"] | ||
disasm = ["capstone"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-runtime-abi" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
description = "Wasmer runtime core library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-runtime-c-api" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
description = "Wasmer C API library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -16,15 +16,15 @@ libc = "0.2" | |
|
||
[dependencies.wasmer-runtime] | ||
path = "../runtime" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
|
||
[dependencies.wasmer-runtime-core] | ||
path = "../runtime-core" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
|
||
[features] | ||
debug = ["wasmer-runtime/debug"] | ||
llvm = ["wasmer-runtime/llvm"] | ||
|
||
[build-dependencies] | ||
cbindgen = "0.8" | ||
cbindgen = "0.8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-runtime-core" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
description = "Wasmer runtime core library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-runtime" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
description = "Wasmer runtime library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -15,11 +15,11 @@ memmap = "0.7.0" | |
|
||
[dependencies.wasmer-runtime-core] | ||
path = "../runtime-core" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
|
||
[dependencies.wasmer-clif-backend] | ||
path = "../clif-backend" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
optional = true | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-spectests" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
description = "Wasmer spectests library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -9,10 +9,10 @@ edition = "2018" | |
build = "build/mod.rs" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.0" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.2.0" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.1.0", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.1.0", optional = true } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.3.0" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.3.0", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.3.0", optional = true } | ||
|
||
[build-dependencies] | ||
wabt = "0.7.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "wasmer-wasi" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.1" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" } | ||
libc = "0.2.50" | ||
rand = "0.6.5" | ||
# wasmer-runtime-abi = { path = "../runtime-abi" } | ||
|
Oops, something went wrong.