-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (63 loc) · 2.14 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
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "awtrix-gui"
version = "0.1.0-beta.1"
edition = "2021"
description = "A GUI for the awtrix clock."
authors = ["bircni"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/bircni/Awtrix-GUI"
keywords = ["awtrix", "gui", "clock", "display", "iot", "embedded"]
categories = ["gui", "hardware-interfaces", "network-programming", "iot"]
[package.metadata.bundle]
name = "AwtrixGUI"
identifier = "bircni.AwtrixGUI"
icon = [
"./../res/mac-icons/icon_16x16.png",
"./../res/mac-icons/icon_32x32.png",
"./../res/mac-icons/icon_128x128.png",
"./../res/mac-icons/icon_256x256.png",
"./../res/mac-icons/[email protected]",
"./../res/mac-icons/[email protected]",
"./../res/mac-icons/[email protected]",
]
version = "0.1.0"
resources = ["./../res/mac-icons/icon*.png"]
copyright = "© 2024 bircni"
short_description = "A GUI for the awtrix clock."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[patch.crates-io]
# egui-notify = { git = "https://github.com/ItsEthra/egui-notify", branch = "master" }
[dependencies]
# Error handling
anyhow = "1.0.95"
# Networking
reqwest = { version = "0.12.11", features = ["blocking"] }
# Parsing
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
semver = "1.0.24"
# GUI
eframe = "0.30.0"
egui = "0.30.0"
egui-notify = "0.18.0"
egui_extras = { version = "0.30.0", features = ["syntect", "image"] }
image = "0.25.5"
open = "5.3.1"
parking_lot = "0.12.3"
[lints.rust]
unsafe_code = "forbid"
deprecated = "deny"
[lints.clippy]
nursery = { level = "deny", priority = 0 }
pedantic = { level = "deny", priority = 1 }
enum_glob_use = { level = "deny", priority = 2 }
perf = { level = "deny", priority = 3 }
style = { level = "deny", priority = 4 }
unwrap_used = { level = "deny", priority = 5 }
expect_used = { level = "deny", priority = 6 }
module_name_repetitions = { level = "allow", priority = 7 }
cast_precision_loss = { level = "allow", priority = 8 }
cast_possible_truncation = { level = "allow", priority = 9 }
cast_sign_loss = { level = "allow", priority = 10 }
out_of_bounds_indexing = { level = "allow", priority = 11 }