Merge branch 'master' into fix/issues-found-while-releasing-0.17.0

This commit is contained in:
Mark McCaskey
2020-05-11 14:54:29 -07:00
committed by GitHub
22 changed files with 67 additions and 60 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "wasmer"
version = "0.16.2"
version = "0.17.0"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
edition = "2018"
publish = true
@ -12,11 +12,11 @@ license = "MIT"
[dependencies]
serde = { version = "1", features = ["derive"] }
wasmer-runtime-core = { version = "0.16.2", path = "../runtime-core" }
wasmer-runtime-core = { version = "0.17.0", path = "../runtime-core" }
[dependencies.wasmer-singlepass-backend]
path = "../singlepass-backend"
version = "0.16.2"
version = "0.17.0"
optional = true
[dependencies.wasmer-llvm-backend]
@ -26,7 +26,7 @@ optional = true
[dependencies.wasmer-clif-backend]
path = "../clif-backend"
version = "0.16.2"
version = "0.17.0"
optional = true
[features]
@ -43,4 +43,4 @@ default-backend-singlepass = ["singlepass"]
default-backend-llvm = ["llvm"]
default-backend-cranelift = ["cranelift"]
deterministic-execution = ["wasmer-singlepass-backend/deterministic-execution", "wasmer-runtime-core/deterministic-execution"]
deterministic-execution = ["wasmer-singlepass-backend/deterministic-execution", "wasmer-runtime-core/deterministic-execution"]

5
lib/api/README.md Normal file
View File

@ -0,0 +1,5 @@
# Wasmer
Wasmer is a universal WebAssembly runtime.
This crate is not ready to be used directly yet. If you're interested in using the Wasmer runtime, checkout the [wasmer-runtime](https://crates.io/crates/wasmer-runtime) crate!