-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
50 lines (46 loc) · 1.26 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
[package]
name = "irs"
description = "IRS (Impersonate-RS)"
version = "0.2.2"
edition = "2021"
authors = ["zblurx <[email protected]>", "g0h4n <>"]
keywords = ["token", "windows", "win32", "impersonate", "impersonate-rs"]
repository = "https://github.com/zblurx/impersonate-rs"
homepage = "https://github.com/zblurx/impersonate-rs"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = "symbols"
panic = "abort"
trim-path = true
opt-level = "z"
lto = true
codegen-units = 1
[dependencies]
clap = "4.0"
obfstr = "0.4.1"
log = "0.4"
rand = "0.5"
env_logger = "0.9"
colored = "2"
[dependencies.windows-sys]
version = "0.45.0"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Com_StructuredStorage",
"Win32_System_Diagnostics_Debug",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
"Win32_System_SystemServices",
"Win32_Security_Authorization",
"Win32_System_Memory",
"Win32_System_Kernel",
"Win32_System_IO",
"Win32_System_Pipes",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Environment",
"Win32_System_SystemInformation",
]