[package]
edition = "2024"
rust-version = "1.88"
name = "gobin"
version = "0.5.0"
build = false
exclude = ["tests/samples/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Static analysis library for Go compiled binaries - identification and metadata extraction"
readme = "README.md"
keywords = [
"golang",
"go",
"parser",
"reverse-engineering",
"binary-analysis",
]
categories = ["parser-implementations"]
license = "Apache-2.0"
repository = "https://github.com/ATRAPSLLC/gobin"
[lib]
name = "gobin"
path = "src/lib.rs"
[[example]]
name = "dump"
path = "examples/dump.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[bench]]
name = "extract"
path = "benches/extract.rs"
harness = false
[dependencies.goblin]
version = "0.10.7"
features = [
"elf32",
"elf64",
"mach32",
"mach64",
"pe32",
"pe64",
"endian_fd",
"std",
]
default-features = false
[dev-dependencies.divan]
version = "0.1.21"
[lints.clippy]
arithmetic_side_effects = "deny"
expect_used = "deny"
indexing_slicing = "deny"
panic = "deny"
unwrap_used = "deny"
[lints.rust]
missing_docs = "deny"