Skip to content

Update_to_wasmer4 #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 29 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
c647e6f
Merge pull request #1 from cppccn/main
AurelienFT Sep 14, 2022
4d57ed6
Fix BufferPtr alloc
Sep 14, 2022
61793fc
Add no_thread feature (allow efficient buffer copy into BufferPtr)
Sep 14, 2022
ca118af
Cargo fmt pass
Sep 15, 2022
8752990
Fix buffer_ptr when buffer size is odd
Sep 16, 2022
272426b
Add start of unit test with odd bytearray size
Sep 19, 2022
4dfde34
Merge pull request #4 from massalabs/fix_buffer_ptr_odd_size
sydhds Sep 20, 2022
15aa21c
Fix the sort test code
adrien-zinger Sep 19, 2022
74de139
Initial code for wasmer 3.0
Nov 30, 2022
371289c
Rework env
Dec 1, 2022
9770d20
Rework read2/read & size2/size
Dec 1, 2022
f8c08db
Rework AnyPtr
Dec 1, 2022
c06380e
Store type from '&mut Store' to '&mut impl AsStoreMut'
Dec 5, 2022
3e636e2
Fixes some clippy warning + update some TU
Dec 8, 2022
0899166
Use size_of instead of hardcoding some values
Dec 15, 2022
cbdd51b
Use memory in env
Dec 19, 2022
8d8144e
Use export_mem macro
Dec 19, 2022
b5199ee
Remove an unwrap
Dec 19, 2022
d40a158
Merge pull request #8 from massalabs/test/wasmer_3_switch
AurelienFT Dec 19, 2022
bc2cf68
upgrade wasmer dep
Eitu33 Jan 27, 2023
87ff700
update SCs
Eitu33 Jan 30, 2023
9c7ea5c
update class ids
Eitu33 Jan 31, 2023
156c2a8
change wasmer version
AurelienFT Feb 1, 2023
ace09db
update class ids
Eitu33 Feb 1, 2023
23c72dd
improve class id comment
Eitu33 Feb 1, 2023
30a2b59
update test ref branch
Eitu33 Feb 1, 2023
81a1cba
Merge pull request #11 from massalabs/test-sc-using-as-25
Eitu33 Feb 1, 2023
78ff994
update wasmer to 3.3.0
modship May 9, 2023
cb6efb0
update to wasmer4
damip Jul 11, 2023
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: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/target
**/*.rs.bk
Cargo.lock

/test-wasm/build
/test-wasm/node_modules

# IDE
.idea
Loading