fixes to PR comments

This commit is contained in:
Yaron Wittenstein 2019-10-07 22:34:32 +03:00
parent 6ca5812798
commit 7ce5ec4df9
2 changed files with 2 additions and 3 deletions

View File

@ -26,7 +26,7 @@ wabt = "0.9.1"
wasmer-clif-backend = { path = "lib/clif-backend" }
wasmer-singlepass-backend = { path = "lib/singlepass-backend", optional = true }
wasmer-middleware-common = { path = "lib/middleware-common" }
wasmer-runtime = { path = "lib/runtime", default-features = false }
wasmer-runtime = { path = "lib/runtime" }
wasmer-runtime-core = { path = "lib/runtime-core" }
wasmer-emscripten = { path = "lib/emscripten" }
wasmer-llvm-backend = { path = "lib/llvm-backend", optional = true }
@ -100,7 +100,6 @@ backend-singlepass = [
]
wasi = ["wasmer-wasi"]
managed = ["backend-singlepass", "wasmer-runtime-core/managed"]
deterministic = ["wasmer-runtime/deterministic"]
[[example]]

View File

@ -41,7 +41,7 @@ singlepass = ["wasmer-singlepass-backend"]
default-backend-singlepass = ["singlepass"]
default-backend-llvm = ["llvm"]
default-backend-cranelift = ["cranelift"]
deterministic = ["wasmer-singlepass-backend/deterministic"]
deterministic = ["wasmer-singlepass-backend/deterministic", "wasmer-runtime-core/deterministic"]
[[bench]]
name = "nginx"