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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
Description: avoid not-in-Debian crate filecheck
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2025-07-22
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -89,7 +89,6 @@
wasmtime = { workspace = true, features = ['default', 'winch', 'pulley', 'all-arch', 'call-hook', 'memory-protection-keys'] }
env_logger = { workspace = true }
log = { workspace = true }
-filecheck = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true, features = ["rt", "time", "macros", "rt-multi-thread"] }
wast = { workspace = true }
@@ -111,7 +110,6 @@
test-programs-artifacts = { workspace = true }
bytesize = "1.3.0"
wit-component = { workspace = true }
-cranelift-filetests = { workspace = true }
cranelift-codegen = { workspace = true, features = ["disas", "trace-log", "timing"] }
cranelift-reader = { workspace = true }
toml = { workspace = true }
@@ -235,7 +233,6 @@
cranelift-module = { path = "cranelift/module", version = "0.113.1" }
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.113.1" }
cranelift-reader = { path = "cranelift/reader", version = "0.113.1" }
-cranelift-filetests = { path = "cranelift/filetests" }
cranelift-object = { path = "cranelift/object", version = "0.113.1" }
cranelift-jit = { path = "cranelift/jit", version = "0.113.1" }
cranelift-fuzzgen = { path = "cranelift/fuzzgen" }
@@ -319,7 +316,6 @@
walkdir = "2.3.3"
cfg-if = "1.0"
tempfile = "3.1.0"
-filecheck = "0.5.0"
libc = { version = "0.2.112", default-features = true }
tokio = { version = "1.30.0", features = [ "rt", "time" ] }
hyper = "1.0.1"
--- a/cranelift/Cargo.toml
+++ b/cranelift/Cargo.toml
@@ -25,12 +25,10 @@
cranelift-reader = { workspace = true }
cranelift-frontend = { workspace = true }
cranelift-native = { workspace = true }
-cranelift-filetests = { workspace = true }
cranelift-module = { workspace = true }
cranelift-object = { workspace = true }
cranelift-jit = { workspace = true }
cranelift = { workspace = true }
-filecheck = { workspace = true }
log = { workspace = true }
capstone = { workspace = true, optional = true }
target-lexicon = { workspace = true, features = ["std"] }
--- a/fuzz/Cargo.toml
+++ b/fuzz/Cargo.toml
@@ -17,7 +17,6 @@
once_cell = { workspace = true }
cranelift-codegen = { workspace = true, features = ["incremental-cache", "x86", "arm64", "s390x", "riscv64"] }
cranelift-reader = { workspace = true }
-cranelift-filetests = { workspace = true }
cranelift-interpreter = { workspace = true }
cranelift-fuzzgen = { workspace = true }
cranelift-native = { workspace = true }
|