-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
58 lines (49 loc) · 1.33 KB
/
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
51
52
53
54
55
56
57
58
[workspace]
resolver = "2"
members = [
"crates/ecolor",
"crates/egui_extras",
"crates/egui_glow",
"crates/egui-wgpu",
"crates/egui-winit",
"crates/egui",
"crates/emath",
"crates/epaint",
]
[package]
name = "rust_clock"
authors = ["Hoothin <[email protected]>"]
license = "MIT"
version = "0.2.0"
edition = "2021"
description = "Clock popup every half hour"
build = "build.rs"
[dependencies]
egui_extras = { path = "crates/egui_extras", features = [
"image"
] }
eframe = { path = "crates/eframe", features = [
"__screenshot", # __screenshot is so we can dump a ascreenshot using EFRAME_SCREENSHOT_TO
] }
tray-icon = "0.5.1"
image = "0.24"
chrono = "0.4.24"
rust-ini = "0.19.0"
rodio = "0.17.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# Optimize all dependencies even in debug builds (does not affect workspace packages):
[profile.dev.package."*"]
opt-level = "z"
[patch.crates-io]
winit = { git = "https://github.com/rust-windowing/winit", rev = "2e4338bb8dddf820c9bcda23d6b7a0d8a6208831" }
[profile.release]
lto = true
strip = true
codegen-units = 1
panic = 'abort'
[package.metadata.winres]
OriginalFilename = "rust_clock.exe"
LegalCopyright = "Copyright Hoothin © 2023"
FileDescription = "Clock popup every half hour"
[build-dependencies]
winres = "0.1"