[package]
edition = "2021"
rust-version = "1.85"
name = "unstrip"
version = "1.2.0"
authors = ["Riven Labs <mohamed@riven-labs.com>"]
build = false
exclude = [
"testdata/",
"mb-corpus/",
"benches/",
"fuzz/",
".github/",
".editorconfig",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Recover symbols, types, and method signatures from stripped Go binaries. Ghidra/IDA/Binary Ninja exporters included."
homepage = "https://github.com/riven-labs/unstrip"
documentation = "https://docs.rs/unstrip"
readme = "README.md"
keywords = [
"reverse-engineering",
"go",
"binary-analysis",
"ghidra",
"malware-analysis",
]
categories = [
"command-line-utilities",
"development-tools::debugging",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/riven-labs/unstrip"
[lib]
name = "unstrip"
path = "src/lib.rs"
[[bin]]
name = "unstrip"
path = "src/bin/unstrip.rs"
[[test]]
name = "dataview"
path = "tests/dataview.rs"
[[test]]
name = "funcsig"
path = "tests/funcsig.rs"
[[test]]
name = "inline"
path = "tests/inline.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.goblin]
version = "0.8"
features = [
"std",
"elf32",
"elf64",
"mach32",
"mach64",
"pe32",
"pe64",
"endian_fd",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies]
[profile.release]
lto = "thin"
codegen-units = 1
panic = "abort"
strip = true