Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ capi/
api-docs/
api-docs-repo/
tags
.ycm*
158 changes: 137 additions & 21 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions lib/llvm-backend/src/stackmap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,8 @@ impl StackmapEntry {
machine_stack_layout.push(major.clone());
} else {
machine_stack_layout.push(MachineValue::TwoHalves(Box::new((
major.clone(),
minor.clone(),
major.clone().into(),
minor.clone().into(),
))));
}
}
Expand Down
4 changes: 4 additions & 0 deletions lib/runtime-c-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ crate-type = ["cdylib", "rlib", "staticlib"]
[dependencies]
libc = "0.2.60"

[dependencies.rkyv]
version = "0.7.26"
features = ["indexmap"]

[dependencies.wasmer-runtime]
default-features = false
path = "../runtime"
Expand Down
Loading