[package]
name = "binparse"
version = "0.1.0"
edition = "2021"
authors = ["Kunal Singh Dadhwal <kunalsinghdadhwal@gmail.com>"]
description = "A colorful, user-friendly alternative to readelf for analyzing ELF binaries"
license = "MIT"
readme = "README.md"
keywords = ["elf", "binary", "analysis", "readelf", "cli"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
clap = { version = "4.4", features = ["derive", "color"] }
colored = "2.1"
goblin = "0.8"
thiserror = "1.0"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true