workspace = { members = [ "ghidra_sleigh"] }
[package]
name = "pcode"
version = "0.1.3"
edition = "2024"
description = "Pure Rust implementation of a p-code disassembler and lifter."
license = "MIT OR Apache-2.0"
[[bin]]
name = "pcode"
path = "src/main.rs"
required-features = ["bin"]
[features]
bin = ["clap", "object"]
[dependencies]
nom = "6.0"
bitvec = "1"
roxmltree = "0.21.1"
clap = { version = "4.5.26", features = ["derive"], optional = true }
object = { version = "0.35.0", optional = true }
[dev-dependencies]
ghidra_sleigh = { path = "ghidra_sleigh" }