-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
124 lines (101 loc) · 2.63 KB
/
Cargo.toml
File metadata and controls
124 lines (101 loc) · 2.63 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[workspace]
resolver = "2"
members = [
"crates/spectre-cli",
"crates/spectre-core",
"crates/spectre-tui",
"crates/spectre-gui",
"crates/spectre-mcp",
]
exclude = [
"components/prtip",
"components/wraith-protocol",
]
[workspace.package]
version = "0.5.0-beta.1"
edition = "2021"
rust-version = "1.92"
authors = ["doublegate"]
license = "MIT"
repository = "https://github.com/doublegate/SPECTRE"
homepage = "https://github.com/doublegate/SPECTRE"
documentation = "https://docs.rs/spectre"
keywords = ["security", "scanning", "encryption", "red-team", "offensive-security"]
categories = ["command-line-utilities", "network-programming"]
[workspace.dependencies]
# Async runtime
tokio = { version = "1.43", features = ["full"] }
async-trait = "0.1"
futures = "0.3"
# CLI
clap = { version = "4.5", features = ["derive", "env", "wrap_help", "color", "suggestions"] }
clap_complete = "4.5"
# TUI
ratatui = "0.30"
crossterm = "0.29"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
toml = "0.8"
toml_edit = "0.22"
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-appender = "0.2"
# Networking
ipnetwork = "0.20"
# Database
rusqlite = { version = "0.32", features = ["bundled"] }
# Plugin system
mlua = { version = "0.11", features = ["lua54", "vendored", "async", "send", "serialize"] }
# ProRT-IP scanner integration
prtip-core = { path = "components/prtip/crates/prtip-core" }
prtip-scanner = { path = "components/prtip/crates/prtip-scanner" }
# WRAITH-Protocol communications integration
wraith-core = { path = "components/wraith-protocol/crates/wraith-core" }
wraith-crypto = { path = "components/wraith-protocol/crates/wraith-crypto" }
# Utilities
uuid = { version = "1.0", features = ["v4"] }
tokio-util = "0.7"
quick-xml = "0.37"
# Crypto (for WRAITH integration)
sha2 = "0.10"
rand = "0.8"
base64 = "0.22"
hex = "0.4"
urlencoding = "2.1"
# Date/time
chrono = { version = "0.4", features = ["serde"] }
# Directories
directories = "6"
# Docker API (for CyberChef-MCP)
bollard = "0.18"
# GUI (Tauri 2.0)
tauri = { version = "2", features = ["tray-icon"] }
tauri-build = { version = "2", features = [] }
tauri-plugin-shell = "2"
tauri-plugin-window-state = "2"
tauri-plugin-store = "2"
# Output formatting
colored = "3"
comfy-table = "7"
indicatif = "0.18"
# Testing
proptest = "1.5"
criterion = "0.5"
tempfile = "3.14"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.dev]
opt-level = 0
debug = true
[profile.bench]
lto = true
codegen-units = 1