Files
ghidra-cli/Cargo.toml
T

92 lines
1.7 KiB
TOML

[package]
name = "ghidra-cli"
version = "0.1.0"
edition = "2021"
authors = ["Alexander Kiselev"]
description = "Rust CLI to run Ghidra headless for reverse engineering with Claude Code and other agents"
license = "GPL-3.0"
repository = "http://127.0.0.1:62915/git/akiselev/ghidra-cli"
[dependencies]
# CLI framework
clap = { version = "4.5", features = ["derive", "env", "cargo"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
# Parsing
pest = "2.7"
pest_derive = "2.7"
# Output formatting
tabled = "0.15"
comfy-table = "7.1"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Logging
env_logger = "0.11"
log = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# RPC
remoc = { version = "0.16", features = ["full"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# System info
sysinfo = "0.30"
# Hashing
md5 = "0.7"
# File system & paths
dirs = "5.0"
tempfile = "3.8"
walkdir = "2.4"
# Process management
which = "6.0"
# Regex
regex = "1.10"
lazy_static = "1.4"
# CSV/TSV
csv = "1.3"
# String similarity (for fuzzy matching)
strsim = "0.11"
# Cross-platform support
dunce = "1.0" # Windows path handling
atty = "0.2" # TTY detection
# Setup command dependencies
reqwest = { version = "0.11", features = ["json", "stream", "rustls-tls"] }
zip = "0.6"
futures-util = "0.3"
indicatif = "0.17"
# Daemonization (Unix only)
[target.'cfg(unix)'.dependencies]
daemonize = "0.5"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.8"
[[bin]]
name = "ghidra"
path = "src/main.rs"