From aad8eaeb5a916989c883d15539268e5cbfdcaeb0 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 28 Feb 2023 11:32:59 -0600 Subject: [PATCH] Add more vets for core dumps (#5894) Required by #5868 --- supply-chain/audits.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/supply-chain/audits.toml b/supply-chain/audits.toml index 30b8ccd14d..b9a3dbf778 100644 --- a/supply-chain/audits.toml +++ b/supply-chain/audits.toml @@ -771,6 +771,12 @@ This is a small crate which doesn't deviate outside of its intended purpose and additionally contains no `unsafe` code. """ +[[audits.wasm-coredump-builder]] +who = "Alex Crichton " +criteria = "safe-to-deploy" +delta = "0.1.10 -> 0.1.11" +notes = "This is a minor update which only adds a small bit of functionality." + [[audits.wasm-coredump-encoder]] who = "Alex Crichton " criteria = "safe-to-deploy" @@ -780,6 +786,15 @@ This small crate contains no `unsafe` code and does no more than what it says on the tin. """ +[[audits.wasm-coredump-encoder]] +who = "Alex Crichton " +criteria = "safe-to-deploy" +delta = "0.1.10 -> 0.1.11" +notes = """ +This is a small update which accounts for a function offset in frames and +doesn't add in too much extra. +""" + [[audits.wasm-coredump-types]] who = "Alex Crichton " criteria = "safe-to-deploy" @@ -789,6 +804,12 @@ This small crate contains no `unsafe` code and only contains type definitions used for wasm core dumps and trivially stays within its bounds. """ +[[audits.wasm-coredump-types]] +who = "Alex Crichton " +criteria = "safe-to-deploy" +delta = "0.1.10 -> 0.1.11" +notes = "This is quite a small update which only adds a small bit of offset-related functionality." + [[audits.wasm-encoder]] who = "Alex Crichton " criteria = "safe-to-deploy"