-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (37 loc) · 991 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
[package]
name = "timerset"
version = "0.4.1"
authors = ["Mathieu Amiot <[email protected]>"]
edition = "2021"
[package.metadata.winres]
OriginalFileName = "TimerSet.exe"
LegalCopyright = "Copyright Mathieu Amiot © 2020"
[features]
loggity-log = []
default = []
[dependencies]
log = "0.4"
fern = { version = "0.6", features = ["colored"] }
clap = { version = "3.0", features = ["derive"] }
thiserror = "1.0"
eyre = "0.6"
time = { version = "0.3", features = ["formatting"] }
winreg = "0.10"
[dependencies.ntapi]
version = "0.3"
default-features = false
features = ["user"]
[dependencies.winapi]
version = "0.3"
default-features = false
features = [
"ntdef", "sysinfoapi", "handleapi", "processthreadsapi", "memoryapi",
"synchapi", "winnt", "objbase", "combaseapi", "taskschd", "securitybaseapi",
"wtypesbase", "rpcdce", "wtypes", "oaidl", "oleauto", "unknwnbase",
]
[build-dependencies]
winres = "0.1"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"