-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (49 loc) · 1.3 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
51
52
53
54
55
56
57
[package]
name = "bypass"
edition = "2021"
[lib]
crate-type = ["lib", "cdylib"]
[profile.release]
opt-level = "z"
panic = "abort"
strip = true
lto = true
[dependencies]
dll-syringe = "0.15.2"
eventlog = "0.2.2"
flume = "0.11.0"
frida-gum = { version = "0.13.6", features = ["auto-download"] }
hickory-proto = "0.24.1"
lazy_static = "1.4.0"
libc = "0.2.155"
log = { version = "0.4.21", features = ["std"] }
thiserror = "1.0.61"
tokio = { version = "1.38.0", features = ["rt-multi-thread", "macros", "sync"] }
[dependencies.windows]
version = "0.57.0"
features = [
"Win32_Foundation",
"Win32_System_IO",
"Win32_Security_Authentication_Identity",
"Win32_System_ProcessStatus",
"Win32_System_Threading",
"Win32_System_LibraryLoader",
"Win32_Networking_WinSock",
]
[dependencies.windows-sys]
version = "0.52.0"
features = [
"Win32_Foundation",
"Win32_System_IO",
"Win32_Security_Authentication_Identity",
"Win32_Security_Credentials",
"Win32_System_SystemServices",
"Win32_System_LibraryLoader",
"Win32_Networking_WinSock",
]
[dev-dependencies]
reqwest = { version = "0.12.2", features = ["native-tls"] }
test-cdylib = { git = "https://github.com/Summpot/test-cdylib.git" }
which = "6.0.1"
anyhow = { version = "1.0.86", features = ["backtrace"] }
windows-registry = "0.1.2"