aboutsummaryrefslogtreecommitdiff
path: root/differential-tests/Cargo.toml
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2025-05-25 05:27:44 +0000
committeriximeow <me@iximeow.net>2025-05-25 05:41:28 +0000
commit614d7e8bc6325dd3e632b3e83da627fa6ff9f31a (patch)
tree1a1e7cc69db5865182b0a0c0c7978d5db514250e /differential-tests/Cargo.toml
parent99fa3b9ad8094a726f2137a717ba7eb9e4118194 (diff)
support the rest of PAC instructions. compare to a more recent capstone
capstone-rs currently binds an old capstone (4.0), where capstone 5.0 is where much of the armv8.2+ implementation was ported over from LLVM. so, differential testing is now pointed to a capstone-rs fork pending the merge of https://github.com/capstone-rust/capstone-rs/pull/172
Diffstat (limited to 'differential-tests/Cargo.toml')
-rw-r--r--differential-tests/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/differential-tests/Cargo.toml b/differential-tests/Cargo.toml
index 64292d5..e89a5c4 100644
--- a/differential-tests/Cargo.toml
+++ b/differential-tests/Cargo.toml
@@ -9,6 +9,6 @@ description = "differential testing between yaxpeax-arm and other disassemblers"
yaxpeax-arm = { path = "../", version = "*" }
yaxpeax-arch = { version = "0.3.1", default-features = false, features = [] }
-capstone = "*"
-capstone-sys = "*"
+# capstone = "*"
+capstone-sys = { git = "https://github.com/jiegec/capstone-rs.git", rev = "5bfa974dd5c3e9fdc1b4e863e134dcaa9f675d82" } # capstone-5.0.6
libc = "*"