diff --git a/Cargo.lock b/Cargo.lock index 8cebb981d8..2f560c2df1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3449,7 +3449,7 @@ dependencies = [ "wasmtime-wasi-crypto", "wasmtime-wasi-nn", "wasmtime-wast", - "wast 43.0.0", + "wast 44.0.0", "wat", "windows-sys", ] @@ -3677,7 +3677,7 @@ version = "0.40.0" dependencies = [ "anyhow", "wasmtime", - "wast 43.0.0", + "wast 44.0.0", ] [[package]] @@ -3691,9 +3691,9 @@ dependencies = [ [[package]] name = "wast" -version = "43.0.0" +version = "44.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "408feaebf6dbf9d154957873b14d00e8fba4cbc17a8cbb1bc9e4c1db425c50a8" +checksum = "5f474d1b1cb7d92e5360b293f28e8bc9b2d115197a5bbf76bdbfba9161cf9cdc" dependencies = [ "leb128", "memchr", @@ -3703,11 +3703,11 @@ dependencies = [ [[package]] name = "wat" -version = "1.0.45" +version = "1.0.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b70bfff0cfaf33dc9d641196dbcd0023a2da8b4b9030c59535cb44e2884983b" +checksum = "82d002ce2eca0730c6df2c21719e9c4d8d0cafe74fb0cb8ff137c0774b8e4ed1" dependencies = [ - "wast 43.0.0", + "wast 44.0.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index ef7dcca430..2fab5488c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,12 +52,12 @@ test-programs = { path = "crates/test-programs" } wasmtime-runtime = { path = "crates/runtime" } tokio = { version = "1.8.0", features = ["rt", "time", "macros", "rt-multi-thread"] } tracing-subscriber = "0.3.1" -wast = "43.0.0" +wast = "44.0.0" criterion = "0.3.4" num_cpus = "1.13.0" memchr = "2.4" async-trait = "0.1" -wat = "1.0.45" +wat = "1.0.46" once_cell = "1.9.0" rayon = "1.5.0" component-macro-test = { path = "crates/misc/component-macro-test" } diff --git a/crates/wast/Cargo.toml b/crates/wast/Cargo.toml index 81f6ac6928..c61578ee34 100644 --- a/crates/wast/Cargo.toml +++ b/crates/wast/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" [dependencies] anyhow = "1.0.19" wasmtime = { path = "../wasmtime", version = "0.40.0", default-features = false, features = ['cranelift'] } -wast = "43.0.0" +wast = "44.0.0" [badges] maintenance = { status = "actively-developed" } diff --git a/supply-chain/audits.toml b/supply-chain/audits.toml index c048b12702..faab943954 100644 --- a/supply-chain/audits.toml +++ b/supply-chain/audits.toml @@ -1,5 +1,15 @@ # cargo-vet audits file -[audits] +[[audits.wast]] +who = "Alex Crichton " +criteria = "safe-to-deploy" +version = "44.0.0" +notes = "The Bytecode Alliance is the author of this crate" + +[[audits.wat]] +who = "Alex Crichton " +criteria = "safe-to-deploy" +version = "1.0.46" +notes = "The Bytecode Alliance is the author of this crate." diff --git a/supply-chain/config.toml b/supply-chain/config.toml index b1ee25d55b..6a352df7b0 100644 --- a/supply-chain/config.toml +++ b/supply-chain/config.toml @@ -1211,14 +1211,6 @@ criteria = "safe-to-deploy" version = "35.0.2" criteria = "safe-to-deploy" -[[exemptions.wast]] -version = "43.0.0" -criteria = "safe-to-deploy" - -[[exemptions.wat]] -version = "1.0.45" -criteria = "safe-to-deploy" - [[exemptions.web-sys]] version = "0.3.57" criteria = "safe-to-run"