[package]
edition = "2024"
rust-version = "1.88"
name = "wazabin-qcode"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed SSA-style p-code IR for binary analysis, modelled after Ghidra's p-code"
homepage = "https://github.com/wazabin/qcode"
documentation = "https://docs.rs/wazabin-qcode"
readme = "readme.md"
keywords = [
"binary-analysis",
"ghidra",
"ir",
"pcode",
"reverse-engineering",
]
categories = [
"development-tools::debugging",
"compilers",
]
license = "MIT"
repository = "https://github.com/wazabin/qcode"
resolver = "2"
[features]
testing = []
[lib]
name = "qcode"
path = "src/lib.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "segments"
path = "tests/segments.rs"
[dependencies.inventory]
version = "0.3"
[dependencies.jstd]
version = "0.2.0"
package = "wazabin-jstd"
[dependencies.log]
version = "0.4"
[dependencies.pcode-types]
version = "0.1.0"
package = "wazabin-pcode"
[dependencies.pest]
version = "2.8.6"
[dependencies.rustc-hash]
version = "2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.smallvec]
version = "1"
[dependencies.wazabin-binary]
version = "0.1.0"
[dependencies.wazabin-qcode-macro]
version = "0.2.0"
[dependencies.wazabin-qcode-parser]
version = "0.2.0"
[dev-dependencies.bincode]
version = "2"
features = ["serde"]