-
Notifications
You must be signed in to change notification settings - Fork 833
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
09fe828
commit 53c8603
Showing
8 changed files
with
72 additions
and
80 deletions.
There are no files selected for viewing
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,14 +1,14 @@ | ||
[package] | ||
name = "wasmer-clif-backend" | ||
version = "0.1.2" | ||
version = "0.2.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.1.2" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.0" } | ||
cranelift-native = "0.26.0" | ||
cranelift-codegen = "0.26.0" | ||
cranelift-entity = "0.26.0" | ||
|
@@ -18,7 +18,7 @@ target-lexicon = "0.2.0" | |
wasmparser = "0.23.0" | ||
byteorder = "1" | ||
nix = "0.13.0" | ||
libc = "0.2.48" | ||
libc = "0.2.49" | ||
rayon = "1.0" | ||
|
||
# Dependencies for caching. | ||
|
@@ -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.0.1" } | ||
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.2.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.1.0" | ||
version = "0.2.0" | ||
description = "Wasmer runtime emscripten implementation library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -9,17 +9,17 @@ edition = "2018" | |
build = "build/mod.rs" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.1.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.0" } | ||
lazy_static = "1.2.0" | ||
libc = { git = "https://github.com/rust-lang/libc" } | ||
libc = "0.2.49" | ||
byteorder = "1" | ||
time = "0.1.41" | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
rand = "0.6" | ||
|
||
[dev-dependencies] | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.1.0" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.2.0" } | ||
wabt = "0.7.2" | ||
|
||
[build-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,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-runtime-c-api" | ||
version = "0.1.4" | ||
version = "0.2.0" | ||
description = "Wasmer c-api library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -9,8 +9,8 @@ edition = "2018" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
wasmer-runtime = { path = "../runtime", version = "0.1.2" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.1.2" } | ||
wasmer-runtime = { path = "../runtime", version = "0.2.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.0" } | ||
libc = "0.2" | ||
|
||
[lib] | ||
|
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.1.2" | ||
version = "0.2.0" | ||
description = "Wasmer runtime core library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -15,7 +15,7 @@ parking_lot = "0.7.1" | |
lazy_static = "1.2.0" | ||
indexmap = "1.0.2" | ||
errno = "0.2.4" | ||
libc = "0.2.48" | ||
libc = "0.2.49" | ||
hex = "0.3.2" | ||
|
||
# Dependencies for caching. | ||
|
@@ -41,7 +41,6 @@ features = ["serde"] | |
winapi = { version = "0.3", features = ["memoryapi"] } | ||
|
||
[dev-dependencies] | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.1.2" } | ||
field-offset = "0.1.1" | ||
|
||
[features] | ||
|
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.1.4" | ||
version = "0.2.0" | ||
description = "Wasmer runtime library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -14,11 +14,11 @@ memmap = "0.7.0" | |
|
||
[dependencies.wasmer-runtime-core] | ||
path = "../runtime-core" | ||
version = "0.1.2" | ||
version = "0.2.0" | ||
|
||
[dependencies.wasmer-clif-backend] | ||
path = "../clif-backend" | ||
version = "0.1.2" | ||
version = "0.2.0" | ||
|
||
[dev-dependencies] | ||
tempfile = "3.0.7" | ||
|
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.1.2" | ||
version = "0.2.0" | ||
description = "Wasmer spectests library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -9,13 +9,13 @@ edition = "2018" | |
build = "build/mod.rs" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.0" } | ||
|
||
[build-dependencies] | ||
wabt = "0.7.2" | ||
|
||
[dev-dependencies] | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.1.2" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.2.0" } | ||
wabt = "0.7.2" | ||
|
||
[features] | ||
|
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,16 +1,16 @@ | ||
[package] | ||
name = "wasmer-win-exception-handler" | ||
version = "0.0.1" | ||
version = "0.2.0" | ||
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.1.2" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.0" } | ||
winapi = { version = "0.3", features = ["winbase", "errhandlingapi", "minwindef", "minwinbase", "winnt"] } | ||
libc = "0.2.48" | ||
libc = "0.2.49" | ||
|
||
[build-dependencies] | ||
cmake = "0.1.35" | ||
|