Skip to content

Commit

Permalink
Begin interpreter mode feature
Browse files Browse the repository at this point in the history
  • Loading branch information
sug0 committed Nov 5, 2024
1 parent 3d11288 commit 9a05a7d
Show file tree
Hide file tree
Showing 2 changed files with 111 additions and 2 deletions.
107 changes: 107 additions & 0 deletions Cargo.lock

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

6 changes: 4 additions & 2 deletions crates/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ repository.workspace = true
version.workspace = true

[features]
default = ["wasm-runtime"]
default = ["wasm-runtime", "wasm-jit"]
wasm-jit = ["wasmer/sys-default"]
wasm-interpret = ["wasmer/wasmi"]
wasm-runtime = [
"parity-wasm",
"rayon",
Expand Down Expand Up @@ -49,7 +51,7 @@ tempfile = { version = "3.2.0", optional = true }
thiserror.workspace = true
tracing.workspace = true
wasm-instrument = { workspace = true, optional = true }
wasmer = { workspace = true, optional = true }
wasmer = { workspace = true, optional = true, default-features = false }
wasmer-cache = { workspace = true, optional = true }
wasmer-compiler-singlepass = { workspace = true, optional = true }
wasmer-vm = { workspace = true, optional = true }
Expand Down

0 comments on commit 9a05a7d

Please sign in to comment.