-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1009 Bytes
/
Cargo.toml
File metadata and controls
44 lines (41 loc) · 1009 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
37
38
39
40
41
42
43
44
workspace = { members = ["gdkeinj", "gdke-gui/src-tauri"] }
[package]
name = "gdke"
version = "0.2.2"
edition = "2021"
[profile.release]
lto = true
strip = true
opt-level = "z"
codegen-units = 1
[profile.debuga]
inherits = "release"
debug = true
strip = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# [workspace]
# members = ["gdke-gui"]
[dependencies]
rust-embed = { version = "*", features = [
"include-exclude",
"interpolate-folder-path",
] }
anyhow = "*"
thiserror = "*"
windows = { features = [
"Win32_Foundation",
"Win32_System",
"Wdk",
"Wdk_System",
"Wdk_System_Threading",
"Win32_System_Threading",
"Win32_System_Diagnostics",
"Win32_System_Diagnostics_Debug",
"Win32_System_SystemInformation",
"Win32_System_SystemServices",
"Win32_System_Kernel",
"Win32_System_ProcessStatus",
"Win32_Security",
], version = "0.56" }
dll-syringe = "*"
poggers = { version = "*", git = "https://github.com/pozm/poggers.git" }