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
|
Description: avoid not-in-Debian crate wit-parser
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2026-02-10
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -252,7 +252,6 @@
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=36.0.5", package = 'wasmtime-internal-versioned-export-macros' }
wasmtime-slab = { path = "crates/slab", version = "=36.0.5", package = 'wasmtime-internal-slab' }
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=36.0.5", package = 'wasmtime-internal-jit-icache-coherence' }
-wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=36.0.5", package = 'wasmtime-internal-wit-bindgen' }
wasmtime-math = { path = "crates/math", version = "=36.0.5", package = 'wasmtime-internal-math' }
wasmtime-unwinder = { path = "crates/unwinder", version = "=36.0.5", package = 'wasmtime-internal-unwinder' }
@@ -310,10 +309,6 @@
io-lifetimes = { version = "2.0.3", default-features = false }
io-extras = "0.18.1"
rustix = "1.0.3"
-# wit-bindgen:
-wit-bindgen = { version = "0.43.0", default-features = false }
-wit-bindgen-rt = { version = "0.43.0", default-features = false }
-wit-bindgen-rust-macro = { version = "0.43.0", default-features = false }
# wasm-tools family:
wasmparser = { version = "0.239.0", default-features = false, features = ['simd'] }
@@ -321,7 +316,6 @@
wast = "239.0.0"
wasmprinter = "0.239.0"
wasm-encoder = "0.239.0"
-wit-parser = "0.239.0"
# Non-Bytecode Alliance maintained dependencies:
# --------------------------
|