-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.07 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (40 loc) · 1.07 KB
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 = "Twinkle"
version = "50.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"
sha2 = "0.11.0"
# tokio = "1.47.1"
# From the GNOME Project – https://gnome.org/
# gtk4 = { version = "0.10.1", optional = true }
# libadwaita = { version = "0.8.0", optional = true }
# libsecret = { version = "0.8.0", optional = true }
# zbus = { version = "5.11.0", features = ["blocking"], optional = true }
# zvariant = { version = "5.7.0", optional = true }
[features]
default = []
gnome = [ # TODO
# "dep:gtk4",
# "dep:libadwaita",
# "dep:libsecret",
# "dep:zbus",
# "dep:zvariant",
]
[[bin]]
name = "twinkle" # TODO: sparkleshare
path = "src/main.rs"
[profile.release]
opt-level = "z"
lto = true
debug = false
codegen-units = 1
panic = "abort"
strip = true