* Update CHANGELOG
* Release 4.0.0-beta.2
* Manual Changelog for beta.2
* Updated 0.x crates when needed
* Bumped wasmer-registry crate to 5.0, there have been some breaking changes
Rework the deserialize/deserialize_checked methods for module
deserialization.
* Make deserialize() methods use artifact validation
* Make checked methods unsafe again, because loading executable memory
is inherently unsafe
* Rename methods that skip artifact validation to deserialize_unchecked
Closes#3727
We recently introduced safe artifact deserialization methods, which are a
much saner default than the unsafe variants, and only have small performance
overhead.
The CLI was switched to the the new, safe deserialization,
but the cache was not updated.
This commit and switches the FileSystemCache implementation to use the
checked deserialization variants.
NOTE: The Cache::load method should also be made safe, but that is a
breaking change.
* Basic changes for RISC-V support
* RISC-V in compiler LLVM
* RISC-V support in dylib engine
* RISC-V support in universal engine
* Various small fixes
* [RISCV] LLVM-riscv working, with some ignored tests to be worked on later
* Update rustc to 4.65 (1.64 has some issue with riscv64 target)
* Fixed some (new) Linting issues
* Updated Cargo.toml and remove split-debuginfo for Windows build
* Removed profile.dev from Cargo.toml as it cannot be per platform (breaks Windows). split-debug info is now the default value
* Enable Cranelift compiler for RISCV
* Update crates and fixed all the new clippy errors
* Taken review remarks into account
* Removed change from deny.toml, it's not needed anymore
* Added some more comment about llvm abi hack
* Added doc about current state of RISCV support
* Fixed (newer) linter
---------
Co-authored-by: Toru Nayuki <tnayuki@icloud.com>
We already depend on `tempfile`, which also provides temp dir
functionality.
This gets rid of a cargo-deny error due to a race condition in
remove_dir_all, which is a dependency of the removed "tempdir" crate.
Also bumps the minimum tempfile version in Cargo.toml files to be
consistent.
This commit extracts changes to core libraries made in the WASIX branch.
It is not reasonable to extract the partial commit history, so this is
just a batch commit.
The history will make a bit more sense again if we decide to merge the
WASIX branch with full commit history.