Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Install Rust and rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: "1.76"
override: true
Comment thread
RogerKSI marked this conversation as resolved.

- name: Install Wabt (wat2wasm)
Expand All @@ -21,7 +21,7 @@ jobs:
sudo cp wabt-1.0.29/bin/wat2wasm /usr/local/bin

- name: Check cargo cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
17 changes: 13 additions & 4 deletions packages/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,20 @@ version = "0.3.1"
assert_matches = "1.3.0"
clru = "0.2.0"
hex = "0.4"
owasm-crypto = {path = "../crypto", version = "0.3.1"}
owasm-crypto = { path = "../crypto", version = "0.3.1" }
sha2 = "0.9.1"
tempfile = "3.1.0"
tempfile = ">=3.1.0, <3.20"
home = ">=0.5, <0.5.9"
rayon = ">=1.0, <1.12"
rayon-core = ">=1.0, <1.13"
backtrace = ">=0.3, <0.3.74"
addr2line = ">=0.17, <0.22"
Comment thread
RogerKSI marked this conversation as resolved.
wasm-instrument = { version = "0.4.0", default-features = false, features = [
"sign_ext"
"sign_ext",
] }
wasmer = { version = "2.3.0", default-features = false, features = [
"singlepass",
"compiler",
"universal",
] }
wasmer = {version = "2.3.0", default-features = false, features = ["singlepass", "compiler", "universal"]}
wasmer-middlewares = "2.3.0"
2 changes: 1 addition & 1 deletion packages/vm/src/calls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ where
let function = instance
.exports
.get_function(entry)
.unwrap()
.map_err(|_| Error::BadEntrySignatureError)?
.native::<(), ()>()
Comment thread
RogerKSI marked this conversation as resolved.
.map_err(|_| Error::BadEntrySignatureError)?;
Comment thread
RogerKSI marked this conversation as resolved.

Expand Down
Loading