-
Notifications
You must be signed in to change notification settings - Fork 22
/
Cargo.toml
43 lines (31 loc) · 922 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
35
36
37
38
39
40
41
42
[package]
name = "NyxInvoke"
version = "0.3.1"
edition = "2021"
[lib]
name = "NyxInvoke"
crate-type = ["cdylib"]
[[bin]]
name = "NyxInvoke"
path = "src/main.rs"
[features]
default = []
exe = []
dll = []
compiled_clr = []
compiled_bof = []
[dependencies]
clroxide = { version = "1.1.1", default-features = true }
clap = { version = "4.5.0", features = ["derive"] }
winapi = {version = "0.3.9", features =["minwindef", "winnt","memoryapi","handleapi","errhandlingapi","winbase"]}
ntapi = {version = "0.4.1"}
reqwest = { version = "0.11", features = ["blocking"] }
rust-crypto = "0.2.36"
coffee-ldr = "*"
base64 = "*"
[profile.release]
opt-level = "z" # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = "abort" # Abort on panic
strip = true # Automatically strip symbols from the binary.