forked from bytecodealliance/wasmtime
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update wasmi to 0.20 in wasmtime-fuzzing * add cargo-vet entries for wasmi_core 0.5.0 and wasmi 0.20.0
- Loading branch information
Showing
3 changed files
with
26 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -481,6 +481,27 @@ unexpected usage of the filesystem or things like that and otherwise is mostly | |
plumbing for all the integer operations in core wasm. | ||
""" | ||
|
||
[[audits.wasmi_core]] | ||
who = "Robin Freyler <[email protected]>" | ||
criteria = "safe-to-run" | ||
version = "0.5.0" | ||
notes = "See notes for version 0.4.0" | ||
|
||
[[audits.wasmi]] | ||
who = "Robin Freyler <[email protected]>" | ||
criteria = "safe-to-run" | ||
version = "0.20.0" | ||
notes = """ | ||
I am the author of this crate. It contains unsafe Rust code. | ||
However, the crate does not read or write data from any parts of the filesystem, | ||
it does not install software upon compilation e.g. via build scripts, | ||
it does not connect to network endpoints and does not misuse system resources. | ||
If any of the above happens it is either by the user explicitly telling the | ||
crate to do so (it is an interpreter) or due to a bug or other unintended | ||
behavior. | ||
""" | ||
|
||
[[audits.wasmparser]] | ||
who = "Alex Crichton <[email protected]>" | ||
criteria = "safe-to-deploy" | ||
|