-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 722 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 722 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
[package]
name = "timetracker-win"
version = "0.0.1"
edition = "2021"
build = "build.rs"
authors = ["jqntn <jqntn@outlook.fr>"]
description = "eight"
license = "MIT"
[profile.release]
lto = true
strip = true
incremental = false
codegen-units = 1
opt-level = "z"
panic = "abort"
[lints.rust]
# Allowing unsafe code for winapi calls.
# unsafe_code = "forbid"
[dependencies]
native-windows-gui = "1.0.13"
native-windows-derive = "1.0.5"
single-instance = "0.3.3"
auto-launch = "0.5.0"
winapi = "0.3.9"
winreg = "0.52.0"
self_update = { version = "0.39.0", features = [
"archive-zip",
"compression-zip-deflate",
] }
[build-dependencies]
winapi = { version = "0.3.9", features = ["wincontypes"] }
winres = "0.1.12"