-
Notifications
You must be signed in to change notification settings - Fork 824
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to version 0.5.3 for wapm bug fix
- Loading branch information
Mark McCaskey
committed
Jul 3, 2019
1 parent
c1fabc9
commit 535da4c
Showing
18 changed files
with
139 additions
and
138 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
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,6 +1,6 @@ | ||
[package] | ||
name = "wasmer" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/wasmerio/wasmer" | ||
|
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.5.2" | ||
version = "0.5.3" | ||
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.5.2" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" } | ||
cranelift-native = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" } | ||
cranelift-codegen = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" } | ||
cranelift-entity = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" } | ||
|
@@ -34,7 +34,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.5.2" } | ||
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.5.3" } | ||
|
||
[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-dev-utils" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
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-emscripten" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
description = "Wasmer runtime emscripten implementation library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -14,17 +14,17 @@ hashbrown = "0.1" | |
lazy_static = "1.2.0" | ||
libc = "0.2.49" | ||
time = "0.1.41" | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.2" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.2", optional = true } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.3" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.3", optional = true } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.3", optional = true } | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
rand = "0.6" | ||
|
||
[dev-dependencies] | ||
wabt = "0.7.2" | ||
wasmer-dev-utils = { path = "../dev-utils", version = "0.5.2"} | ||
wasmer-dev-utils = { path = "../dev-utils", version = "0.5.3"} | ||
|
||
[build-dependencies] | ||
glob = "0.2.11" | ||
|
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.5.2" | ||
version = "0.5.3" | ||
authors = ["Lachlan Sneff <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" } | ||
inkwell = { git = "https://github.com/wasmerio/inkwell", branch = "llvm7-0" } | ||
wasmparser = "0.32.1" | ||
hashbrown = "0.1.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
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.5.2" | ||
version = "0.5.3" | ||
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.5.2" | ||
version = "0.5.3" | ||
description = "Wasmer C API library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -16,11 +16,11 @@ libc = "0.2" | |
|
||
[dependencies.wasmer-runtime] | ||
path = "../runtime" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
|
||
[dependencies.wasmer-runtime-core] | ||
path = "../runtime-core" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
|
||
[features] | ||
debug = ["wasmer-runtime/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-runtime-core" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
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.5.2" | ||
version = "0.5.3" | ||
description = "Wasmer runtime library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -9,17 +9,17 @@ edition = "2018" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.3", optional = true } | ||
lazy_static = "1.2.0" | ||
memmap = "0.7.0" | ||
|
||
[dependencies.wasmer-runtime-core] | ||
path = "../runtime-core" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
|
||
[dependencies.wasmer-clif-backend] | ||
path = "../clif-backend" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "wasmer-singlepass-backend" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
repository = "https://github.com/wasmerio/wasmer" | ||
description = "Wasmer runtime single pass compiler backend" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" } | ||
wasmparser = "0.32.1" | ||
dynasm = "0.3.2" | ||
dynasmrt = "0.3.1" | ||
|
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.5.2" | ||
version = "0.5.3" | ||
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.5.2" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.2" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.2", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.3" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.3", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.3", 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,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-wasi" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
description = "Wasmer runtime WASI implementation library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -9,7 +9,7 @@ edition = "2018" | |
build = "build/mod.rs" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" } | ||
libc = "0.2.50" | ||
rand = "0.6.5" | ||
# wasmer-runtime-abi = { path = "../runtime-abi" } | ||
|
@@ -18,7 +18,7 @@ generational-arena = "0.2.2" | |
log = "0.4.6" | ||
byteorder = "1.3.1" | ||
# hack to get tests to work | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.3", optional = true } | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
winapi = "0.3" | ||
|
@@ -27,8 +27,8 @@ winapi = "0.3" | |
glob = "0.2.11" | ||
|
||
[dev-dependencies] | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.2" } | ||
wasmer-dev-utils = { path = "../dev-utils", version = "0.5.2"} | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.3" } | ||
wasmer-dev-utils = { path = "../dev-utils", version = "0.5.3"} | ||
|
||
[features] | ||
clif = [] | ||
|
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-win-exception-handler" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
description = "Wasmer runtime exception handling for Windows" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
edition = "2018" | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.3" } | ||
winapi = { version = "0.3", features = ["winbase", "errhandlingapi", "minwindef", "minwinbase", "winnt"] } | ||
libc = "0.2.49" | ||
|
||
|
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
Submodule wapm-cli
updated
11 files
+4 −0 | CHANGELOG.md | |
+26 −30 | Cargo.lock | |
+1 −1 | Cargo.toml | |
+4 −0 | azure-pipelines.yml | |
+1 −1 | end-to-end-tests/manifest-validation.txt | |
+1 −1 | end-to-end-tests/package-fs-mapping.txt | |
+4 −0 | end-to-end-tests/verification.sh | |
+12 −2 | end-to-end-tests/verification.txt | |
+3 −3 | lib/wasm-interface/Cargo.toml | |
+7 −0 | src/dataflow/find_command_result.rs | |
+45 −36 | src/dataflow/installed_packages.rs |