-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (38 loc) · 856 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
43
44
45
46
[package]
name = "starter"
version = "0.1.0"
edition = "2021"
[profile.dev]
panic = "abort"
[profile.release]
opt-level = "z"
lto = true
panic = "abort"
codegen-units = 1
[build-dependencies]
walkdir = "2.5"
reqwest = { version = "0.12.11", features = ["blocking"] }
[dependencies.critical-section]
version = "1.2.0"
[dependencies.libc_alloc]
version = "1.0.7"
[dependencies.once_cell]
version = "1.20.2"
default-features = false
features = [
"critical-section"
]
[dependencies.wavesabre-rs]
git = "https://github.com/Kwarf/wavesabre-rs.git"
[dependencies.windows-sys]
version = "0.59.0"
default-features = false
features = [
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_Graphics_OpenGL",
"Win32_System_Performance",
"Win32_System_Threading",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_WindowsAndMessaging",
]