-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
50 lines (42 loc) · 865 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
47
48
49
50
[workspace]
members = [
"modules/elam-rs", "modules/win-service-rs"
]
[package]
name = "ppl-service-rs"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[[bin]]
name = "ppl"
path = "src/main.rs"
[dependencies]
anyhow = "~1"
log = "~0"
thiserror = "~1"
winapi = "0.3"
flate2 = { version = "1.0", default-features = false, features = [
"rust_backend",
] }
windebug_logger = "0.1.4"
[dependencies.windows-sys]
version = "0.59.0"
features = [
"Win32_Storage",
"Win32_Foundation",
"Win32_System_IO",
"Win32_Security",
"Win32_System_Antimalware",
"Win32_Storage_FileSystem",
"Win32_Storage_InstallableFileSystems",
"Win32_System",
"Win32_System_Diagnostics",
"Win32_System_Diagnostics_Debug",
"Win32_System_Services",
]
[profile.dev]
panic = "abort"
lto = true
[profile.release]
panic = "abort"
lto = true