-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (49 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
55 lines (49 loc) · 1.26 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
# SPDX-FileCopyrightText: 2023 The MalwareTracesGenerator development team
#
# SPDX-License-Identifier: CC0-1.0
[package]
name = "malware-traces-generator"
version = "1.2.0"
edition = "2024"
rust-version = "1.85.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.62.2", features = [
"Win32_Security",
"Win32_System_Services",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Threading",
"Win32_System_LibraryLoader",
] }
clap = { version = "4.6.0", features = ["derive"] }
toml = { version = "1.0.7" }
serde = { version = "1.0.219", features = ["derive"] }
indicatif = { version = "0.18.4" }
console = { version = "0.16.3" }
[build-dependencies]
embed-resource = { version = "3.0.8" }
[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