-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
46 lines (40 loc) · 1.18 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
[package]
name = "rs-shell"
version = "0.2.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
native-tls = "0.2.12"
signal-hook = "0.3.17"
regex = "1.10.6"
open = "5.3.0"
simple_logger = "5.0.0"
log = "0.4.22"
ctrlc = "3.4.5"
clap = { version = "4.5.16", features = ["derive"] }
ntapi = "0.4.1"
winapi = "0.3.9"
time = "0.3.36"
actix-web = { version = "4.9.0", features = ["rustls-0_22"] }
rustls = "0.22.4"
rustls-pemfile = "2.1.3"
actix-files = "0.6.6"
actix-multipart = "0.7.2"
reqwest = { version = "0.12.7", features = ["blocking", "rustls-tls", "multipart"] }
[dependencies.windows-sys]
version = "0.59.0"
features = [
"Win32_System_Memory",
"Win32_Foundation",
"Win32_Security",
"Win32_System_Threading",
"Win32_System_Diagnostics_Debug",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_LibraryLoader",
"Win32_System_Kernel",
"Wdk_System_Threading",
"Win32_Networking_WinInet",
"Win32_Networking_WinHttp"
]
[target.'cfg(target_os = "windows")'.dependencies]
syscalls = { git = "https://github.com/BlWasp/syscalls-rs.git", branch = "main", features = ["_INDIRECT_"] }