[package]
edition = "2021"
name = "ghidra-cli"
version = "0.1.10"
authors = ["Alexander Kiselev"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust CLI to run Ghidra headless for reverse engineering with Claude Code and other agents"
readme = "README.md"
license = "GPL-3.0"
repository = "https://github.com/akiselev/ghidra-cli"
[lib]
name = "ghidra_cli"
path = "src/lib.rs"
[[bin]]
name = "ghidra"
path = "src/main.rs"
[[test]]
name = "command_tests"
path = "tests/command_tests.rs"
[[test]]
name = "comment_tests"
path = "tests/comment_tests.rs"
[[test]]
name = "daemon_tests"
path = "tests/daemon_tests.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[[test]]
name = "output_format_integration"
path = "tests/output_format_integration.rs"
[[test]]
name = "patch_tests"
path = "tests/patch_tests.rs"
[[test]]
name = "project_tests"
path = "tests/project_tests.rs"
[[test]]
name = "readonly_tests"
path = "tests/readonly_tests.rs"
[[test]]
name = "reliability_tests"
path = "tests/reliability_tests.rs"
[[test]]
name = "script_tests"
path = "tests/script_tests.rs"
[[test]]
name = "symbol_tests"
path = "tests/symbol_tests.rs"
[[test]]
name = "type_tests"
path = "tests/type_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
"cargo",
]
[dependencies.comfy-table]
version = "7.1"
[dependencies.csv]
version = "1.3"
[dependencies.dirs]
version = "5.0"
[dependencies.dunce]
version = "1.0"
[dependencies.env_logger]
version = "0.11"
[dependencies.futures-util]
version = "0.3"
[dependencies.indicatif]
version = "0.17"
[dependencies.lazy_static]
version = "1.4"
[dependencies.libc]
version = "0.2"
[dependencies.log]
version = "0.4"
[dependencies.md5]
version = "0.7"
[dependencies.pest]
version = "2.7"
[dependencies.pest_derive]
version = "2.7"
[dependencies.regex]
version = "1.10"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"stream",
"rustls-tls",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.strsim]
version = "0.11"
[dependencies.tabled]
version = "0.15"
[dependencies.tempfile]
version = "3.8"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.35"
features = [
"rt",
"io-util",
"time",
"net",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.walkdir]
version = "2.4"
[dependencies.which]
version = "6.0"
[dependencies.zip]
version = "0.6"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.insta]
version = "1.40"
features = [
"json",
"redactions",
]
[dev-dependencies.predicates]
version = "3.0"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.serial_test]
version = "3.0"
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.uuid]
version = "1.6"
features = ["v4"]