[package]
edition = "2024"
rust-version = "1.85"
name = "ghidra"
version = "0.0.3"
build = "build.rs"
include = [
"build.rs",
"bridge/src/main/java/**",
"src/**",
"tests/**",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed Rust bindings for an embedded Ghidra JVM"
homepage = "https://github.com/ooojustin/ghidra-rs"
documentation = "https://docs.rs/ghidra"
readme = "README.md"
keywords = [
"ghidra",
"reverse-engineering",
"decompiler",
"jni",
"bindings",
]
categories = [
"api-bindings",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/ooojustin/ghidra-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "ghidra"
path = "src/lib.rs"
[[test]]
name = "bridge_topology"
path = "tests/bridge_topology.rs"
[[test]]
name = "lifecycle"
path = "tests/lifecycle.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[dependencies.jni]
version = "0.22.4"
features = ["invocation"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.thiserror]
version = "2.0.17"
[dev-dependencies.anyhow]
version = "1.0.100"
[dev-dependencies.tempfile]
version = "3.23.0"