[package]
edition = "2024"
name = "wazabin-binary"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Binary container formats and architecture metadata for binary analysis"
homepage = "https://github.com/wazabin/binary"
documentation = "https://docs.rs/wazabin-binary"
readme = "README.md"
keywords = [
"binary",
"elf",
"pe",
"reverse-engineering",
]
categories = [
"development-tools::debugging",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/wazabin/binary"
resolver = "2"
[lib]
name = "wazabin_binary"
path = "src/lib.rs"
[[test]]
name = "elf_loader_fields"
path = "tests/elf_loader_fields.rs"
[dependencies.elf]
version = "0.8"
[dependencies.goblin]
version = "0.10"
[dependencies.serde]
version = "1"
features = ["derive"]