Prepare for 1.0.0-alpha3 release

This commit is contained in:
Mark McCaskey
2020-09-14 13:03:04 -07:00
parent a82848d498
commit ead9532004
26 changed files with 141 additions and 137 deletions

View File

@@ -2,6 +2,10 @@
## **[Unreleased]** ## **[Unreleased]**
## 1.0.0-alpha3 - 2020-09-14
- [#1620](https://github.com/wasmerio/wasmer/pull/1620) Fix bug causing the Wapm binary to not be packaged with the release
- [#1619](https://github.com/wasmerio/wasmer/pull/1619) Improve error message in engine-native when C compiler is missing
## 1.0.0-alpha02.0 - 2020-09-11 ## 1.0.0-alpha02.0 - 2020-09-11
- [#1602](https://github.com/wasmerio/wasmer/pull/1602) Fix panic when calling host functions with negative numbers in certain situations - [#1602](https://github.com/wasmerio/wasmer/pull/1602) Fix panic when calling host functions with negative numbers in certain situations
- [#1590](https://github.com/wasmerio/wasmer/pull/1590) Fix soundness issue in API of vm::Global - [#1590](https://github.com/wasmerio/wasmer/pull/1590) Fix soundness issue in API of vm::Global

40
Cargo.lock generated
View File

@@ -2143,7 +2143,7 @@ checksum = "72b6c0220ded549d63860c78c38f3bcc558d1ca3f4efa74942c536ddbbb55e87"
[[package]] [[package]]
name = "wasmer" name = "wasmer"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"cfg-if", "cfg-if",
@@ -2168,7 +2168,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-c-api" name = "wasmer-c-api"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"cbindgen", "cbindgen",
"cfg-if", "cfg-if",
@@ -2194,7 +2194,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-cache" name = "wasmer-cache"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"blake3", "blake3",
"hex", "hex",
@@ -2205,7 +2205,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-cli" name = "wasmer-cli"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"atty", "atty",
@@ -2234,7 +2234,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-compiler" name = "wasmer-compiler"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"enumset", "enumset",
"hashbrown 0.8.2", "hashbrown 0.8.2",
@@ -2251,7 +2251,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-compiler-cranelift" name = "wasmer-compiler-cranelift"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"cranelift-codegen", "cranelift-codegen",
"cranelift-frontend", "cranelift-frontend",
@@ -2270,7 +2270,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-compiler-llvm" name = "wasmer-compiler-llvm"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"byteorder", "byteorder",
"cc", "cc",
@@ -2292,7 +2292,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-compiler-singlepass" name = "wasmer-compiler-singlepass"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"byteorder", "byteorder",
"dynasm", "dynasm",
@@ -2310,7 +2310,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-emscripten" name = "wasmer-emscripten"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"byteorder", "byteorder",
"getrandom", "getrandom",
@@ -2323,7 +2323,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-engine" name = "wasmer-engine"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"backtrace", "backtrace",
"bincode", "bincode",
@@ -2341,7 +2341,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-engine-dummy" name = "wasmer-engine-dummy"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"bincode", "bincode",
"serde", "serde",
@@ -2354,7 +2354,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-engine-jit" name = "wasmer-engine-jit"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"bincode", "bincode",
"cfg-if", "cfg-if",
@@ -2370,7 +2370,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-engine-native" name = "wasmer-engine-native"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"bincode", "bincode",
"cfg-if", "cfg-if",
@@ -2389,7 +2389,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-object" name = "wasmer-object"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"object 0.19.0", "object 0.19.0",
"thiserror", "thiserror",
@@ -2399,7 +2399,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-types" name = "wasmer-types"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"cranelift-entity", "cranelift-entity",
"serde", "serde",
@@ -2407,7 +2407,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-vm" name = "wasmer-vm"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"backtrace", "backtrace",
"cc", "cc",
@@ -2425,7 +2425,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-wasi" name = "wasmer-wasi"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"bincode", "bincode",
"byteorder", "byteorder",
@@ -2443,7 +2443,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-wasi-experimental-io-devices" name = "wasmer-wasi-experimental-io-devices"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"minifb", "minifb",
"ref_thread_local", "ref_thread_local",
@@ -2455,7 +2455,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-wast" name = "wasmer-wast"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"serde", "serde",
@@ -2469,7 +2469,7 @@ dependencies = [
[[package]] [[package]]
name = "wasmer-workspace" name = "wasmer-workspace"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha02.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"blake3", "blake3",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-workspace" name = "wasmer-workspace"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Wasmer workspace" description = "Wasmer workspace"
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"] authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
repository = "https://github.com/wasmerio/wasmer" repository = "https://github.com/wasmerio/wasmer"
@@ -10,18 +10,18 @@ publish = false
autoexamples = false autoexamples = false
[dependencies] [dependencies]
wasmer = { version = "1.0.0-alpha02.0", path = "lib/api", default-features = false } wasmer = { version = "1.0.0-alpha3", path = "lib/api", default-features = false }
wasmer-compiler = { version = "1.0.0-alpha02.0", path = "lib/compiler" } wasmer-compiler = { version = "1.0.0-alpha3", path = "lib/compiler" }
wasmer-compiler-cranelift = { version = "1.0.0-alpha02.0", path = "lib/compiler-cranelift", optional = true } wasmer-compiler-cranelift = { version = "1.0.0-alpha3", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "1.0.0-alpha02.0", path = "lib/compiler-singlepass", optional = true } wasmer-compiler-singlepass = { version = "1.0.0-alpha3", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "1.0.0-alpha02.0", path = "lib/compiler-llvm", optional = true } wasmer-compiler-llvm = { version = "1.0.0-alpha3", path = "lib/compiler-llvm", optional = true }
wasmer-engine = { version = "1.0.0-alpha02.0", path = "lib/engine" } wasmer-engine = { version = "1.0.0-alpha3", path = "lib/engine" }
wasmer-engine-jit = { version = "1.0.0-alpha02.0", path = "lib/engine-jit", optional = true } wasmer-engine-jit = { version = "1.0.0-alpha3", path = "lib/engine-jit", optional = true }
wasmer-engine-native = { version = "1.0.0-alpha02.0", path = "lib/engine-native", optional = true } wasmer-engine-native = { version = "1.0.0-alpha3", path = "lib/engine-native", optional = true }
wasmer-wasi = { version = "1.0.0-alpha02.0", path = "lib/wasi", optional = true } wasmer-wasi = { version = "1.0.0-alpha3", path = "lib/wasi", optional = true }
wasmer-wast = { version = "1.0.0-alpha02.0", path = "tests/lib/wast", optional = true } wasmer-wast = { version = "1.0.0-alpha3", path = "tests/lib/wast", optional = true }
wasmer-cache = { version = "1.0.0-alpha02.0", path = "lib/cache", optional = true } wasmer-cache = { version = "1.0.0-alpha3", path = "lib/cache", optional = true }
wasmer-types = { version = "1.0.0-alpha02.0", path = "lib/wasmer-types" } wasmer-types = { version = "1.0.0-alpha3", path = "lib/wasmer-types" }
cfg-if = "0.1" cfg-if = "0.1"
[workspace] [workspace]

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer" name = "wasmer"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "High-performant WebAssembly runtime" description = "High-performant WebAssembly runtime"
categories = ["wasm"] categories = ["wasm"]
keywords = ["wasm", "webassembly", "runtime", "vm"] keywords = ["wasm", "webassembly", "runtime", "vm"]
@@ -11,15 +11,15 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
wasmer-vm = { path = "../vm", version = "1.0.0-alpha02.0" } wasmer-vm = { path = "../vm", version = "1.0.0-alpha3" }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "1.0.0-alpha02.0", optional = true } wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "1.0.0-alpha3", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "1.0.0-alpha02.0", optional = true } wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "1.0.0-alpha3", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "1.0.0-alpha02.0", optional = true } wasmer-compiler-llvm = { path = "../compiler-llvm", version = "1.0.0-alpha3", optional = true }
wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha02.0" } wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha3" }
wasmer-engine = { path = "../engine", version = "1.0.0-alpha02.0" } wasmer-engine = { path = "../engine", version = "1.0.0-alpha3" }
wasmer-engine-jit = { path = "../engine-jit", version = "1.0.0-alpha02.0", optional = true } wasmer-engine-jit = { path = "../engine-jit", version = "1.0.0-alpha3", optional = true }
wasmer-engine-native = { path = "../engine-native", version = "1.0.0-alpha02.0", optional = true } wasmer-engine-native = { path = "../engine-native", version = "1.0.0-alpha3", optional = true }
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha02.0" } wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha3" }
indexmap = { version = "1.4", features = ["serde-1"] } indexmap = { version = "1.4", features = ["serde-1"] }
cfg-if = "0.1" cfg-if = "0.1"
wat = { version = "1.0", optional = true } wat = { version = "1.0", optional = true }

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-c-api" name = "wasmer-c-api"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Wasmer C API library" description = "Wasmer C API library"
categories = ["wasm", "api-bindings"] categories = ["wasm", "api-bindings"]
keywords = ["wasm", "webassembly", "runtime"] keywords = ["wasm", "webassembly", "runtime"]
@@ -15,17 +15,17 @@ edition = "2018"
crate-type = ["cdylib", "staticlib"] crate-type = ["cdylib", "staticlib"]
[dependencies] [dependencies]
wasmer = { version = "1.0.0-alpha02.0", path = "../api", default-features = false } wasmer = { version = "1.0.0-alpha3", path = "../api", default-features = false }
wasmer-compiler = { version = "1.0.0-alpha02.0", path = "../compiler" } wasmer-compiler = { version = "1.0.0-alpha3", path = "../compiler" }
wasmer-compiler-cranelift = { version = "1.0.0-alpha02.0", path = "../compiler-cranelift", optional = true } wasmer-compiler-cranelift = { version = "1.0.0-alpha3", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "1.0.0-alpha02.0", path = "../compiler-singlepass", optional = true } wasmer-compiler-singlepass = { version = "1.0.0-alpha3", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "1.0.0-alpha02.0", path = "../compiler-llvm", optional = true } wasmer-compiler-llvm = { version = "1.0.0-alpha3", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "1.0.0-alpha02.0", path = "../emscripten", optional = true } wasmer-emscripten = { version = "1.0.0-alpha3", path = "../emscripten", optional = true }
wasmer-engine = { version = "1.0.0-alpha02.0", path = "../engine" } wasmer-engine = { version = "1.0.0-alpha3", path = "../engine" }
wasmer-engine-jit = { version = "1.0.0-alpha02.0", path = "../engine-jit", optional = true } wasmer-engine-jit = { version = "1.0.0-alpha3", path = "../engine-jit", optional = true }
wasmer-engine-native = { version = "1.0.0-alpha02.0", path = "../engine-native", optional = true } wasmer-engine-native = { version = "1.0.0-alpha3", path = "../engine-native", optional = true }
wasmer-wasi = { version = "1.0.0-alpha02.0", path = "../wasi", optional = true } wasmer-wasi = { version = "1.0.0-alpha3", path = "../wasi", optional = true }
wasmer-types = { version = "1.0.0-alpha02.0", path = "../wasmer-types" } wasmer-types = { version = "1.0.0-alpha3", path = "../wasmer-types" }
cfg-if = "0.1" cfg-if = "0.1"
lazy_static = "1" lazy_static = "1"
libc = { version = "^0.2.69", default-features = false } libc = { version = "^0.2.69", default-features = false }
@@ -36,7 +36,7 @@ typetag = { version = "0.1", optional = true }
paste = "0.1" paste = "0.1"
# for generating code in the same way thot the wasm-c-api does # for generating code in the same way thot the wasm-c-api does
# Commented out for now until we can find a solution to the exported function problem # Commented out for now until we can find a solution to the exported function problem
# wasmer-wasm-c-api = { version = "1.0.0-alpha02.0", path = "crates/wasm-c-api" } # wasmer-wasm-c-api = { version = "1.0.0-alpha3", path = "crates/wasm-c-api" }
[features] [features]
default = [ default = [

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-cache" name = "wasmer-cache"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Cache system for Wasmer WebAssembly runtime" description = "Cache system for Wasmer WebAssembly runtime"
categories = ["wasm", "caching"] categories = ["wasm", "caching"]
keywords = ["wasm", "webassembly", "cache"] keywords = ["wasm", "webassembly", "cache"]
@@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
wasmer = { path = "../api", version = "1.0.0-alpha02.0", default-features = false } wasmer = { path = "../api", version = "1.0.0-alpha3", default-features = false }
memmap = "0.7" memmap = "0.7"
hex = "0.4" hex = "0.4"
thiserror = "1" thiserror = "1"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-cli" name = "wasmer-cli"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Wasmer CLI" description = "Wasmer CLI"
categories = ["wasm", "command-line-interface"] categories = ["wasm", "command-line-interface"]
keywords = ["wasm", "webassembly", "cli"] keywords = ["wasm", "webassembly", "cli"]
@@ -17,20 +17,20 @@ path = "src/bin/wasmer.rs"
doc = false doc = false
[dependencies] [dependencies]
wasmer = { version = "1.0.0-alpha02.0", path = "../api", default-features = false } wasmer = { version = "1.0.0-alpha3", path = "../api", default-features = false }
wasmer-compiler = { version = "1.0.0-alpha02.0", path = "../compiler" } wasmer-compiler = { version = "1.0.0-alpha3", path = "../compiler" }
wasmer-compiler-cranelift = { version = "1.0.0-alpha02.0", path = "../compiler-cranelift", optional = true } wasmer-compiler-cranelift = { version = "1.0.0-alpha3", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "1.0.0-alpha02.0", path = "../compiler-singlepass", optional = true } wasmer-compiler-singlepass = { version = "1.0.0-alpha3", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "1.0.0-alpha02.0", path = "../compiler-llvm", optional = true } wasmer-compiler-llvm = { version = "1.0.0-alpha3", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "1.0.0-alpha02.0", path = "../emscripten", optional = true } wasmer-emscripten = { version = "1.0.0-alpha3", path = "../emscripten", optional = true }
wasmer-engine = { version = "1.0.0-alpha02.0", path = "../engine" } wasmer-engine = { version = "1.0.0-alpha3", path = "../engine" }
wasmer-engine-jit = { version = "1.0.0-alpha02.0", path = "../engine-jit", optional = true } wasmer-engine-jit = { version = "1.0.0-alpha3", path = "../engine-jit", optional = true }
wasmer-engine-native = { version = "1.0.0-alpha02.0", path = "../engine-native", optional = true } wasmer-engine-native = { version = "1.0.0-alpha3", path = "../engine-native", optional = true }
wasmer-wasi = { version = "1.0.0-alpha02.0", path = "../wasi", optional = true } wasmer-wasi = { version = "1.0.0-alpha3", path = "../wasi", optional = true }
wasmer-wasi-experimental-io-devices = { version = "1.0.0-alpha02.0", path = "../wasi-experimental-io-devices", optional = true } wasmer-wasi-experimental-io-devices = { version = "1.0.0-alpha3", path = "../wasi-experimental-io-devices", optional = true }
wasmer-wast = { version = "1.0.0-alpha02.0", path = "../../tests/lib/wast", optional = true } wasmer-wast = { version = "1.0.0-alpha3", path = "../../tests/lib/wast", optional = true }
wasmer-cache = { version = "1.0.0-alpha02.0", path = "../cache", optional = true } wasmer-cache = { version = "1.0.0-alpha3", path = "../cache", optional = true }
wasmer-types = { version = "1.0.0-alpha02.0", path = "../wasmer-types" } wasmer-types = { version = "1.0.0-alpha3", path = "../wasmer-types" }
atty = "0.2" atty = "0.2"
colored = "2.0" colored = "2.0"
anyhow = "1.0" anyhow = "1.0"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-compiler-cranelift" name = "wasmer-compiler-cranelift"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Cranelift compiler for Wasmer WebAssembly runtime" description = "Cranelift compiler for Wasmer WebAssembly runtime"
categories = ["wasm"] categories = ["wasm"]
keywords = ["wasm", "webassembly", "compiler", "cranelift"] keywords = ["wasm", "webassembly", "compiler", "cranelift"]
@@ -12,9 +12,9 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha02.0", features = ["translator"], default-features = false } wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha3", features = ["translator"], default-features = false }
wasmer-vm = { path = "../vm", version = "1.0.0-alpha02.0" } wasmer-vm = { path = "../vm", version = "1.0.0-alpha3" }
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha02.0", default-features = false, features = ["std"] } wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha3", default-features = false, features = ["std"] }
cranelift-codegen = { version = "0.65", default-features = false } cranelift-codegen = { version = "0.65", default-features = false }
cranelift-frontend = { version = "0.65", default-features = false } cranelift-frontend = { version = "0.65", default-features = false }
tracing = "0.1" tracing = "0.1"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-compiler-llvm" name = "wasmer-compiler-llvm"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "LLVM compiler for Wasmer WebAssembly runtime" description = "LLVM compiler for Wasmer WebAssembly runtime"
categories = ["wasm"] categories = ["wasm"]
keywords = ["wasm", "webassembly", "compiler", "llvm"] keywords = ["wasm", "webassembly", "compiler", "llvm"]
@@ -12,9 +12,9 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha02.0", features = ["translator"] } wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha3", features = ["translator"] }
wasmer-vm = { path = "../vm", version = "1.0.0-alpha02.0" } wasmer-vm = { path = "../vm", version = "1.0.0-alpha3" }
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha02.0" } wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha3" }
target-lexicon = { version = "0.10", default-features = false } target-lexicon = { version = "0.10", default-features = false }
smallvec = "1" smallvec = "1"
goblin = "0.2" goblin = "0.2"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-compiler-singlepass" name = "wasmer-compiler-singlepass"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Singlepass compiler for Wasmer WebAssembly runtime" description = "Singlepass compiler for Wasmer WebAssembly runtime"
categories = ["wasm"] categories = ["wasm"]
keywords = ["wasm", "webassembly", "compiler", "singlepass"] keywords = ["wasm", "webassembly", "compiler", "singlepass"]
@@ -12,9 +12,9 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha02.0", features = ["translator"], default-features = false } wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha3", features = ["translator"], default-features = false }
wasmer-vm = { path = "../vm", version = "1.0.0-alpha02.0" } wasmer-vm = { path = "../vm", version = "1.0.0-alpha3" }
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha02.0", default-features = false, features = ["std"] } wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha3", default-features = false, features = ["std"] }
rayon = "1.3" rayon = "1.3"
hashbrown = { version = "0.8", optional = true } hashbrown = { version = "0.8", optional = true }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-compiler" name = "wasmer-compiler"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Base compiler abstraction for Wasmer WebAssembly runtime" description = "Base compiler abstraction for Wasmer WebAssembly runtime"
categories = ["wasm", "no-std"] categories = ["wasm", "no-std"]
keywords = ["wasm", "webassembly", "compiler"] keywords = ["wasm", "webassembly", "compiler"]
@@ -11,8 +11,8 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
wasmer-vm = { path = "../vm", version = "1.0.0-alpha02.0" } wasmer-vm = { path = "../vm", version = "1.0.0-alpha3" }
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha02.0", default-features = false } wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha3", default-features = false }
wasmparser = { version = "0.57", optional = true, default-features = false } wasmparser = { version = "0.57", optional = true, default-features = false }
target-lexicon = { version = "0.10", default-features = false } target-lexicon = { version = "0.10", default-features = false }
enumset = "1.0" enumset = "1.0"

View File

@@ -14,16 +14,16 @@ edition = "2018"
maintenance = { status = "deprecated" } maintenance = { status = "deprecated" }
[dependencies] [dependencies]
wasmer-types = { path = "../../wasmer-types", version = "1.0.0-alpha02.0" } wasmer-types = { path = "../../wasmer-types", version = "1.0.0-alpha3" }
wasmer = { path = "../../api", version = "1.0.0-alpha02.0" } wasmer = { path = "../../api", version = "1.0.0-alpha3" }
wasmer-cache = { path = "../../cache", version = "1.0.0-alpha02.0" } wasmer-cache = { path = "../../cache", version = "1.0.0-alpha3" }
wasmer-compiler = { path = "../../compiler", version = "1.0.0-alpha02.0", features = ["translator"] } wasmer-compiler = { path = "../../compiler", version = "1.0.0-alpha3", features = ["translator"] }
wasmer-compiler-llvm = { path = "../../compiler-llvm", version = "1.0.0-alpha02.0", optional = true } wasmer-compiler-llvm = { path = "../../compiler-llvm", version = "1.0.0-alpha3", optional = true }
wasmer-compiler-cranelift = { path = "../../compiler-cranelift", version = "1.0.0-alpha02.0", optional = true } wasmer-compiler-cranelift = { path = "../../compiler-cranelift", version = "1.0.0-alpha3", optional = true }
wasmer-compiler-singlepass = { path = "../../compiler-singlepass", version = "1.0.0-alpha02.0", optional = true } wasmer-compiler-singlepass = { path = "../../compiler-singlepass", version = "1.0.0-alpha3", optional = true }
wasmer-engine = { path = "../../engine", version = "1.0.0-alpha02.0" } wasmer-engine = { path = "../../engine", version = "1.0.0-alpha3" }
wasmer-engine-jit = { path = "../../engine-jit", version = "1.0.0-alpha02.0" } wasmer-engine-jit = { path = "../../engine-jit", version = "1.0.0-alpha3" }
wasmer-vm = { path = "../../vm", version = "1.0.0-alpha02.0" } wasmer-vm = { path = "../../vm", version = "1.0.0-alpha3" }
lazy_static = "1.4" lazy_static = "1.4"
[build-dependencies] [build-dependencies]

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-emscripten" name = "wasmer-emscripten"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Emscripten implementation library for Wasmer WebAssembly runtime" description = "Emscripten implementation library for Wasmer WebAssembly runtime"
categories = ["wasm", "os"] categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "abi", "emscripten", "posix"] keywords = ["wasm", "webassembly", "abi", "emscripten", "posix"]
@@ -16,7 +16,7 @@ lazy_static = "1.4"
libc = "^0.2.69" libc = "^0.2.69"
log = "0.4" log = "0.4"
time = "0.1" time = "0.1"
wasmer = { path = "../api", version = "1.0.0-alpha02.0", default-features = false } wasmer = { path = "../api", version = "1.0.0-alpha3", default-features = false }
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
getrandom = "0.1" getrandom = "0.1"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-engine-jit" name = "wasmer-engine-jit"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Wasmer JIT Engine" description = "Wasmer JIT Engine"
categories = ["wasm"] categories = ["wasm"]
keywords = ["wasm", "webassembly", "engine", "jit"] keywords = ["wasm", "webassembly", "engine", "jit"]
@@ -11,10 +11,10 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha02.0" } wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha3" }
wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha02.0", features = ["translator"] } wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha3", features = ["translator"] }
wasmer-vm = { path = "../vm", version = "1.0.0-alpha02.0" } wasmer-vm = { path = "../vm", version = "1.0.0-alpha3" }
wasmer-engine = { path = "../engine", version = "1.0.0-alpha02.0" } wasmer-engine = { path = "../engine", version = "1.0.0-alpha3" }
# flexbuffers = { path = "../../../flatbuffers/rust/flexbuffers", version = "0.1.0" } # flexbuffers = { path = "../../../flatbuffers/rust/flexbuffers", version = "0.1.0" }
region = "2.2" region = "2.2"
serde = { version = "1.0", features = ["derive", "rc"] } serde = { version = "1.0", features = ["derive", "rc"] }

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-engine-native" name = "wasmer-engine-native"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Wasmer Native Engine" description = "Wasmer Native Engine"
categories = ["wasm"] categories = ["wasm"]
keywords = ["wasm", "webassembly", "engine", "native"] keywords = ["wasm", "webassembly", "engine", "native"]
@@ -11,11 +11,11 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha02.0" } wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha3" }
wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha02.0" } wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha3" }
wasmer-vm = { path = "../vm", version = "1.0.0-alpha02.0" } wasmer-vm = { path = "../vm", version = "1.0.0-alpha3" }
wasmer-engine = { path = "../engine", version = "1.0.0-alpha02.0" } wasmer-engine = { path = "../engine", version = "1.0.0-alpha3" }
wasmer-object = { path = "../object", version = "1.0.0-alpha02.0" } wasmer-object = { path = "../object", version = "1.0.0-alpha3" }
serde = { version = "1.0", features = ["derive", "rc"] } serde = { version = "1.0", features = ["derive", "rc"] }
cfg-if = "0.1" cfg-if = "0.1"
tracing = "0.1" tracing = "0.1"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-engine" name = "wasmer-engine"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Wasmer Engine abstraction" description = "Wasmer Engine abstraction"
categories = ["wasm"] categories = ["wasm"]
keywords = ["wasm", "webassembly", "engine"] keywords = ["wasm", "webassembly", "engine"]
@@ -11,9 +11,9 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha02.0" } wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha3" }
wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha02.0" } wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha3" }
wasmer-vm = { path = "../vm", version = "1.0.0-alpha02.0" } wasmer-vm = { path = "../vm", version = "1.0.0-alpha3" }
target-lexicon = { version = "0.10", default-features = false } target-lexicon = { version = "0.10", default-features = false }
# flexbuffers = { path = "../../../flatbuffers/rust/flexbuffers", version = "0.1.0" } # flexbuffers = { path = "../../../flatbuffers/rust/flexbuffers", version = "0.1.0" }
backtrace = "0.3" backtrace = "0.3"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-object" name = "wasmer-object"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Wasmer Native Object generator" description = "Wasmer Native Object generator"
categories = ["wasm"] categories = ["wasm"]
keywords = ["wasm", "webassembly"] keywords = ["wasm", "webassembly"]
@@ -11,8 +11,8 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha02.0" } wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha3" }
wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha02.0", default-features = false, features = [ wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha3", default-features = false, features = [
"std", "std",
"translator" "translator"
] } ] }

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-vm" name = "wasmer-vm"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Runtime library support for Wasmer" description = "Runtime library support for Wasmer"
categories = ["wasm"] categories = ["wasm"]
keywords = ["wasm", "webassembly"] keywords = ["wasm", "webassembly"]
@@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha02.0" } wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha3" }
region = "2.2" region = "2.2"
libc = { version = "^0.2.69", default-features = false } libc = { version = "^0.2.69", default-features = false }
memoffset = "0.5" memoffset = "0.5"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-wasi-experimental-io-devices" name = "wasmer-wasi-experimental-io-devices"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "An experimental non-standard WASI extension for graphics" description = "An experimental non-standard WASI extension for graphics"
categories = ["wasm"] categories = ["wasm"]
keywords = ["wasm", "webassembly", "types"] keywords = ["wasm", "webassembly", "types"]
@@ -14,7 +14,7 @@ edition = "2018"
maintenance = { status = "experimental" } maintenance = { status = "experimental" }
[dependencies] [dependencies]
wasmer-wasi = { version = "1.0.0-alpha02.0", path = "../wasi" } wasmer-wasi = { version = "1.0.0-alpha3", path = "../wasi" }
tracing = "0.1" tracing = "0.1"
minifb = "0.16" minifb = "0.16"
ref_thread_local = "0.0" ref_thread_local = "0.0"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-wasi" name = "wasmer-wasi"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "WASI implementation library for Wasmer WebAssembly runtime" description = "WASI implementation library for Wasmer WebAssembly runtime"
categories = ["wasm", "os"] categories = ["wasm", "os"]
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
@@ -21,7 +21,7 @@ getrandom = "0.1"
time = "0.1" time = "0.1"
typetag = "0.1" typetag = "0.1"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
wasmer = { path = "../api", version = "1.0.0-alpha02.0", default-features = false } wasmer = { path = "../api", version = "1.0.0-alpha3", default-features = false }
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
winapi = "0.3" winapi = "0.3"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-types" name = "wasmer-types"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
description = "Wasmer Common Types" description = "Wasmer Common Types"
categories = ["wasm", "no-std", "data-structures"] categories = ["wasm", "no-std", "data-structures"]
keywords = ["wasm", "webassembly", "types"] keywords = ["wasm", "webassembly", "types"]

View File

@@ -21,7 +21,7 @@ except ImportError:
# TODO: find this automatically # TODO: find this automatically
target_version = "1.0.0-alpha02.0" target_version = "1.0.0-alpha02.1"
# TODO: generate this by parsing toml files # TODO: generate this by parsing toml files
dep_graph = { dep_graph = {

View File

@@ -1,6 +1,6 @@
# A script to update the version of all the crates at the same time # A script to update the version of all the crates at the same time
PREVIOUS_VERSION='1.0.0-alpha01.0' PREVIOUS_VERSION='1.0.0-alpha02.0'
NEXT_VERSION='1.0.0-alpha02.0' NEXT_VERSION='1.0.0-alpha3'
# quick hack # quick hack
fd Cargo.toml --exec sed -i '' "s/version = \"$PREVIOUS_VERSION\"/version = \"$NEXT_VERSION\"/" fd Cargo.toml --exec sed -i '' "s/version = \"$PREVIOUS_VERSION\"/version = \"$NEXT_VERSION\"/"

View File

@@ -1,6 +1,6 @@
[Setup] [Setup]
AppName=Wasmer AppName=Wasmer
AppVersion=1.0.0-alpha02.0 AppVersion=1.0.0-alpha3
DefaultDirName={pf}\Wasmer DefaultDirName={pf}\Wasmer
DefaultGroupName=Wasmer DefaultGroupName=Wasmer
Compression=lzma2 Compression=lzma2

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-engine-dummy" name = "wasmer-engine-dummy"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"] authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
description = "Wasmer placeholder engine" description = "Wasmer placeholder engine"
license = "MIT" license = "MIT"
@@ -8,10 +8,10 @@ edition = "2018"
publish = false publish = false
[dependencies] [dependencies]
wasmer-types = { path = "../../../lib/wasmer-types", version = "1.0.0-alpha02.0" } wasmer-types = { path = "../../../lib/wasmer-types", version = "1.0.0-alpha3" }
wasmer-compiler = { path = "../../../lib/compiler", version = "1.0.0-alpha02.0" } wasmer-compiler = { path = "../../../lib/compiler", version = "1.0.0-alpha3" }
wasmer-vm = { path = "../../../lib/vm", version = "1.0.0-alpha02.0" } wasmer-vm = { path = "../../../lib/vm", version = "1.0.0-alpha3" }
wasmer-engine = { path = "../../../lib/engine", version = "1.0.0-alpha02.0" } wasmer-engine = { path = "../../../lib/engine", version = "1.0.0-alpha3" }
serde = { version = "1.0", features = ["derive", "rc"], optional = true } serde = { version = "1.0", features = ["derive", "rc"], optional = true }
serde_bytes = { version = "0.11", optional = true } serde_bytes = { version = "0.11", optional = true }
bincode = { version = "1.2", optional = true } bincode = { version = "1.2", optional = true }

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wasmer-wast" name = "wasmer-wast"
version = "1.0.0-alpha02.0" version = "1.0.0-alpha3"
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"] authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
description = "wast testing support for wasmer" description = "wast testing support for wasmer"
license = "MIT OR (Apache-2.0 WITH LLVM-exception)" license = "MIT OR (Apache-2.0 WITH LLVM-exception)"
@@ -12,8 +12,8 @@ edition = "2018"
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0"
wasmer = { path = "../../../lib/api", version = "1.0.0-alpha02.0", default-features = false } wasmer = { path = "../../../lib/api", version = "1.0.0-alpha3", default-features = false }
wasmer-wasi = { path = "../../../lib/wasi", version = "1.0.0-alpha02.0" } wasmer-wasi = { path = "../../../lib/wasi", version = "1.0.0-alpha3" }
wast = "17.0" wast = "17.0"
serde = "1" serde = "1"
tempfile = "3" tempfile = "3"