Skip to content

Commit

Permalink
Try #2340:
Browse files Browse the repository at this point in the history
  • Loading branch information
bors[bot] authored May 25, 2021
2 parents 24c5ad0 + e5a784a commit 003b311
Show file tree
Hide file tree
Showing 88 changed files with 511 additions and 497 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ wasmer-compiler-singlepass = { version = "1.0.2", path = "lib/compiler-singlepas
wasmer-compiler-llvm = { version = "1.0.2", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "1.0.2", path = "lib/emscripten", optional = true }
wasmer-engine = { version = "1.0.2", path = "lib/engine" }
wasmer-engine-jit = { version = "1.0.2", path = "lib/engine-jit", optional = true }
wasmer-engine-universal = { version = "1.0.2", path = "lib/engine-universal", optional = true }
wasmer-engine-native = { version = "1.0.2", path = "lib/engine-native", optional = true }
wasmer-engine-object-file = { version = "1.0.2", path = "lib/engine-object-file", optional = true }
wasmer-wasi = { version = "1.0.2", path = "lib/wasi", optional = true }
Expand All @@ -40,7 +40,7 @@ members = [
"lib/derive",
"lib/emscripten",
"lib/engine",
"lib/engine-jit",
"lib/engine-universal",
"lib/engine-native",
"lib/engine-object-file",
"lib/object",
Expand Down Expand Up @@ -81,7 +81,7 @@ loupe = "0.1"
default = [
"wat",
"wast",
"jit",
"universal",
"native",
"object-file",
"cache",
Expand All @@ -90,8 +90,8 @@ default = [
"middlewares",
]
engine = []
jit = [
"wasmer-engine-jit",
universal = [
"wasmer-engine-universal",
"engine",
]
native = [
Expand All @@ -110,7 +110,7 @@ wat = ["wasmer/wat"]
compiler = [
"wasmer/compiler",
"wasmer-compiler/translator",
"wasmer-engine-jit/compiler",
"wasmer-engine-universal/compiler",
"wasmer-engine-native/compiler",
"wasmer-engine-object-file/compiler",
]
Expand Down Expand Up @@ -143,9 +143,9 @@ test-native = [
"native",
"test-generator/test-native",
]
test-jit = [
"jit",
"test-generator/test-jit",
test-universal = [
"universal",
"test-generator/test-universal",
]

# Specifies that we're running in coverage testing mode. This disables tests
Expand All @@ -165,8 +165,8 @@ path = "examples/early_exit.rs"
required-features = ["cranelift"]

[[example]]
name = "engine-jit"
path = "examples/engine_jit.rs"
name = "engine-universal"
path = "examples/engine_universal.rs"
required-features = ["cranelift"]

[[example]]
Expand Down
Loading

0 comments on commit 003b311

Please sign in to comment.