-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 970 Bytes
/
Cargo.toml
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
[package]
name = "ruscord_c2"
version = "0.1.0"
edition = "2021"
authors = ["Infamous <[email protected]>"]
description = "A Command and Control (C2) framework written in Rust, using Discord infrastructure as a communication channel."
repository = "https://github.com/ehuff700/Ruscord-C2"
[dependencies]
poise = "0.6.1"
thiserror = "2.0.4"
tokio = { version = "1.42.0", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
uuid = { version = "1.11.0", features = ["fast-rng", "serde", "v4"] }
whoami = "1.4"
local-ip-address = "0.6.3"
chrono = "0.4.38"
sysinfo = { version = "0.33.0" }
tabled = "0.17.0"
zip = "2.2.1"
walkdir = "2.5.0"
clipboard = "0.5.0"
xcap = "0.0.14"
[build-dependencies]
serde = { version = "1.0.215", features = ["derive"] }
toml = "0.8.19"
uuid = { version = "1.11.0", features = ["v4", "fast-rng"] }
[patch.crates-io]
sysinfo = { git = "https://github.com/ehuff700/sysinfo.git" }