Three tests failed on the extracted tree for a reason that was not a port defect: disasm_goldens.rs resolves its fixtures through a relative path to xenia-cpu/tests/golden/, and I had copied the test without the data. The fixtures (base + extended mnemonics, VMX128 registers) and the generator test now live in sylpheed-ppc, and the shim test in sylpheed-xexdb points at them. serde/serde_json become dev-dependencies of sylpheed-ppc, which the fixtures need and the library does not. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
15 lines
284 B
TOML
15 lines
284 B
TOML
[package]
|
|
name = "sylpheed-ppc"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "PowerPC decode and disassembly, for static analysis"
|
|
|
|
[dependencies]
|
|
tracing = "0.1"
|
|
bitflags = "2"
|
|
thiserror = "1"
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|