[package]
edition = "2024"
rust-version = "1.94"
name = "redshank-cli"
version = "0.2.2"
authors = ["Nick Campbell <s0ma@protonmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI entry point for the Redshank investigation agent"
readme = "README.md"
keywords = [
"osint",
"cli",
"investigation",
"agent",
"llm",
]
categories = ["command-line-utilities"]
license = "AGPL-3.0-or-later"
repository = "https://github.com/greysquirr3l/redshank"
resolver = "2"
[[bin]]
name = "redshank"
path = "src/main.rs"
[[test]]
name = "tui_pty"
path = "tests/tui_pty.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.redshank-core]
version = "0.2.2"
features = ["runtime"]
[dependencies.redshank-fetchers]
version = "0.2.2"
[dependencies.redshank-tui]
version = "0.2.2"
[dependencies.rpassword]
version = "7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.portable-pty]
version = "0.9"
[lints.clippy]
multiple_crate_versions = "allow"