-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 963 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 963 Bytes
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
[package]
name = "SysProbe"
version = "0.1.0"
edition = "2021"
description = "Windows internals analysis library"
license = "MIT"
[lib]
name = "SysProbe"
crate-type = ["rlib"]
[dependencies]
winapi = { version = "0.3", features = [
"processthreadsapi", "memoryapi", "synchapi", "handleapi",
"winuser", "sysinfoapi", "winnt", "ntdef",
"minwindef", "windef", "errhandlingapi", "profileapi", "heapapi",
"threadpoollegacyapiset", "winbase", "tlhelp32", "psapi",
"wintrust", "wincrypt", "softpub", "winerror",
"wingdi", "winreg", "shellapi"
]}
ntapi = "0.4"
object = "0.38.1"
pdb = "0.8.0"
sha2 = "0.10.9"
xxhash-rust = { version = "0.8.15", features = ["xxh3"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.5", features = ["derive"] }
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
debug = false
overflow-checks = false
incremental = false