-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcargo.toml
More file actions
32 lines (27 loc) · 805 Bytes
/
Copy pathcargo.toml
File metadata and controls
32 lines (27 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "osint-tools-cli"
version = "0.2.0"
authors = ["Ocat <tetrapasta02@gmail.com>"]
license = "MIT"
edition = "2021"
description = "A terminal user interface for browsing OSINT tools"
repository = "https://github.com/Coordinate-Cat/osint-tools-cli"
[dependencies]
# Core dependencies
tokio = { version = "1.0", features = ["full"] }
color-eyre = "0.6.3"
serde = { version = "1.0", features = ["derive"] }
# TUI dependencies
ratatui = "0.29.0"
crossterm = { version = "0.28.1", features = ["event-stream"] }
# Additional utilities
strum = { version = "0.26", features = ["derive"] }
futures = "0.3"
tokio-util = "0.7"
env_logger = "0.11"
log = "0.4"
# Optional signal handling (Unix only)
[target.'cfg(unix)'.dependencies]
signal-hook = "0.3"
[dev-dependencies]
pretty_assertions = "1.4"