-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (48 loc) · 1.2 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (48 loc) · 1.2 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
[package]
name = "wraith-cli"
description = "Command-line interface for WRAITH protocol"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
[[bin]]
name = "wraith"
path = "src/main.rs"
[dependencies]
wraith-core = { workspace = true }
wraith-crypto = { workspace = true }
wraith-transport = { workspace = true }
wraith-obfuscation = { workspace = true }
wraith-discovery = { workspace = true }
wraith-files = { workspace = true }
tokio = { workspace = true }
clap = { workspace = true }
indicatif = { workspace = true }
console = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
anyhow = { workspace = true }
zeroize = { workspace = true }
toml = "0.9"
serde = { version = "1.0", features = ["derive"] }
dirs = "6.0"
hex = "0.4"
rand_core = { workspace = true }
# Security: Private key encryption
argon2 = "0.5"
chacha20poly1305 = "0.10"
rpassword = "7.3"
url = "2.5"
# RedOps TUI & gRPC
tonic = "0.10"
prost = "0.12"
prost-types = "0.12"
tokio-stream = "0.1"
ratatui = "0.26"
crossterm = "0.27"
[build-dependencies]
tonic-build = "0.14"
[dev-dependencies]
tempfile = "3.8"