[package]
edition = "2024"
name = "augur"
version = "0.7.5"
authors = ["Marco Ivaldi <raptor@0xdeadbeef.info>"]
build = "build.rs"
exclude = [
".cargo/*",
".github/*",
".img/*",
"tests/*",
"ida-plugin.json",
"ida-plugin-stub.py",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reverse engineering assistant that extracts strings and related pseudocode from a binary file."
homepage = "https://0xdeadbeef.info/"
documentation = "https://0xdeadbeef.info/augur/augur/"
readme = "README.md"
keywords = [
"reverse-engineering",
"binary-file",
"vuln-dev",
"ida",
"idalib",
]
categories = [
"security",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/0xdea/augur"
[lib]
name = "augur"
path = "src/lib.rs"
[[bin]]
name = "augur"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.haruspex]
version = "0.7"
[dependencies.idalib]
version = "0.7"
[dev-dependencies.walkdir]
version = "2.5"
[build-dependencies.idalib-build]
version = "0.7"
[lints.clippy]
multiple_crate_versions = "allow"
significant_drop_tightening = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust.missing_docs]
level = "warn"
priority = 0
[profile.dev]
debug = 0
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true