1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Description: avoid not-in-Debian crate wasm-wave
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2025-11-20
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -278,7 +278,6 @@
wasm-mutate = "0.217.0"
wit-parser = "0.217.0"
wit-component = "0.217.0"
-wasm-wave = "0.217.0"
# Non-Bytecode Alliance maintained dependencies:
# --------------------------
--- a/crates/wasmtime/Cargo.toml
+++ b/crates/wasmtime/Cargo.toml
@@ -33,7 +33,6 @@
target-lexicon = { workspace = true }
wasmparser = { workspace = true }
wasm-encoder = { workspace = true, optional = true }
-wasm-wave = { workspace = true, optional = true }
anyhow = { workspace = true }
libc = { workspace = true }
cfg-if = { workspace = true }
@@ -335,10 +334,6 @@
# is off by default.
reexport-wasmparser = []
-# Enables instances of the traits defined in the wasm-wave crate, which
-# provides a human-readable text format for component values.
-wave = ["dep:wasm-wave"]
-
# Gates compile-time support for host signals-based-traps.
#
# Traps based on signals, such as SIGSEGV, are useful for accelerating
|