-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 843 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 843 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
[package]
name = "Twinkle"
version = "49.0.0"
homepage = "https://planetpeanut.studio/twinkle"
repository = "https://www.github.com/hbons/Twinkle"
authors = ["Hylke Bons <hello@planetpeanut.studio>"]
license = "GNU General Public License v3 or later"
readme = "README.md"
edition = "2021"
[dependencies]
# From the Recommended Crate Directory – https://blessed.rs/
chrono = "0.4.42"
notify = "8.2.0"
serde = { version = "1.0.225", features = ["derive"] }
serde_json = "1.0.145"
# tokio = "1.47.1"
# From the GNOME Project – https://gnome.org/
# gtk4 = "0.10.1"
# libadwaita = "0.8.0"
# libsecret = "0.7.0"
# zbus = { version = "5.11.0", features = ["blocking"] }
# zvariant = "5.7.0"
[[bin]]
name = "twinkle"
path = "src/main.rs"
[profile.release]
opt-level = "z"
lto = true
debug = false
codegen-units = 1
panic = "abort"
strip = true