[package]
edition = "2024"
rust-version = "1.88"
name = "idakit"
version = "0.1.0"
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Idiomatic Rust bindings for IDA Pro's idalib kernel"
readme = "README.md"
keywords = [
"ida",
"ida-pro",
"reverse-engineering",
"decompiler",
"disassembler",
]
categories = [
"api-bindings",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Xevion/idakit"
resolver = "2"
[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
targets = []
[lib]
name = "idakit"
path = "src/lib.rs"
[[example]]
name = "accept_eula"
path = "examples/accept_eula.rs"
[[example]]
name = "actor"
path = "examples/actor.rs"
doc-scrape-examples = true
[[example]]
name = "analyze"
path = "examples/analyze.rs"
doc-scrape-examples = true
[[example]]
name = "ctree_dump"
path = "examples/ctree_dump.rs"
doc-scrape-examples = true
[[example]]
name = "edits"
path = "examples/edits.rs"
[[example]]
name = "make_fixture"
path = "examples/make_fixture.rs"
[[example]]
name = "probe_argloc"
path = "examples/probe_argloc.rs"
[[example]]
name = "probe_ctree_counts"
path = "examples/probe_ctree_counts.rs"
[[example]]
name = "taint"
path = "examples/taint.rs"
doc-scrape-examples = true
[[example]]
name = "type_diff"
path = "examples/type_diff.rs"
[[example]]
name = "types"
path = "examples/types.rs"
[[test]]
name = "attributes"
path = "tests/attributes.rs"
[[test]]
name = "builder"
path = "tests/builder.rs"
[[test]]
name = "cfg"
path = "tests/cfg.rs"
[[test]]
name = "corpus_matrix"
path = "tests/corpus_matrix.rs"
harness = false
[[test]]
name = "ctor"
path = "tests/ctor.rs"
[[test]]
name = "cxx_error"
path = "tests/cxx_error.rs"
[[test]]
name = "data"
path = "tests/data.rs"
[[test]]
name = "dbinfo"
path = "tests/dbinfo.rs"
[[test]]
name = "decode_sweep"
path = "tests/decode_sweep.rs"
[[test]]
name = "disasm"
path = "tests/disasm.rs"
[[test]]
name = "faults"
path = "tests/faults.rs"
[[test]]
name = "frame"
path = "tests/frame.rs"
[[test]]
name = "function_name"
path = "tests/function_name.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "search"
path = "tests/search.rs"
[[test]]
name = "side_effects"
path = "tests/side_effects.rs"
[[test]]
name = "signals"
path = "tests/signals.rs"
[[test]]
name = "strings"
path = "tests/strings.rs"
[[test]]
name = "symbols"
path = "tests/symbols.rs"
[[test]]
name = "tinfo"
path = "tests/tinfo.rs"
[[test]]
name = "write"
path = "tests/write.rs"
[dependencies.bon]
version = "3.9.3"
[dependencies.cxx]
version = "1.0.197"
[dependencies.dotenvy]
version = "0.15.7"
[dependencies.idakit-sys]
version = "0.1.0"
[dependencies.num_enum]
version = "0.7.6"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.siphasher]
version = "1.0.3"
[dependencies.snafu]
version = "0.9.1"
[dependencies.strum]
version = "0.28.0"
features = ["derive"]
[dependencies.toml]
version = "1.1.2"
[dependencies.tracing]
version = "0.1.44"
[dev-dependencies.assert2]
version = "0.4.0"
[dev-dependencies.libc]
version = "0.2.186"
[dev-dependencies.libtest-mimic]
version = "0.8.2"
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.rstest]
version = "0.26.1"