-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
53 lines (48 loc) · 1.24 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# SPDX-FileCopyrightText: 2023 The MalwareTracesGenerator development team
#
# SPDX-License-Identifier: CC0-1.0
[package]
name = "malware-traces-generator"
version = "1.0.0"
edition = "2021"
rust-version = "1.83.0"
description = "Generate malware traces for detection tests"
documentation = "https://frack113.github.io/MalwareTracesGenerator/"
repository = "https://github.com/frack113/MalwareTracesGenerator/"
license = "GPL-3.0-or-later"
keywords = [
"malware-detection",
"blueteam",
"windows",
"artifacts-generation",
"rust",
]
categories = ["command-line-utilities"]
[[bin]]
name = "mtg"
path = "./src/main.rs"
[dependencies]
windows = { version = "0.59.0", features = [
"Win32_Security",
"Win32_System_Services",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Threading",
] }
clap = { version = "4.5.28", features = ["derive"] }
toml = { version = "0.8.20" }
serde = { version = "1.0.217", features = ["derive"] }
indicatif = { version = "0.17.11" }
console = { version = "0.15.10" }
[build-dependencies]
embed-resource = { version = "3.0.1" }
[profile.release]
opt-level = 3
debug = false
strip = true
debug-assertions = false
overflow-checks = false
lto = false
panic = "unwind"
incremental = false
codegen-units = 16
rpath = false