libpcode 0.1.4

Pure Rust implementation of a p-code disassembler and lifter.
Documentation
workspace = { members = [ "ghidra_sleigh"] }

[package]
name = "libpcode"
version = "0.1.4"
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" }