Skip to content

Commit

Permalink
Update wasmi to 0.20.0 in wasmtime-fuzzing (bytecodealliance#5256)
Browse files Browse the repository at this point in the history
* 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
Robbepop authored Nov 14, 2022
1 parent 060f125 commit 72eda0c
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 12 deletions.
15 changes: 4 additions & 11 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/fuzzing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ wasm-encoder = { workspace = true }
wasm-smith = { workspace = true }
wasm-mutate = { workspace = true }
wasm-spec-interpreter = { path = "./wasm-spec-interpreter", optional = true }
wasmi = "0.19.0"
wasmi = "0.20.0"

# We rely on precompiled v8 binaries, but rusty-v8 doesn't have a precompiled
# binary for MinGW which is built on our CI. It does have one for Windows-msvc,
Expand Down
21 changes: 21 additions & 0 deletions supply-chain/audits.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 72eda0c

Please sign in to comment.