-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 846 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
[package]
name = "dll_injector"
description = "A DLL injector written in Rust"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0 AND MIT"
repository = "https://github.com/tanchevk/dll_injector"
readme = "README.md"
publish = false
authors = ["Kamela <[email protected]>"]
[dependencies]
windows = { version = "0.58.0", features = [
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Threading",
"Win32_System_LibraryLoader",
"Win32_System_Memory",
"Win32_System_Diagnostics_Debug",
"Win32_Security"
] }
tracing = { version = "0.1.40", features = ["max_level_debug"] }
tracing-subscriber = { version = "0.3.18", features = ["ansi"] }
clap = { version = "4.5.20", features = ["derive", "color"] }
[profile.dev]
opt-level = 0
[profile.dev_optimised]
inherits = "dev"
incremental = false
opt-level = 0
lto = "fat"
codegen-units = 1