-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 802 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 802 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
[package]
name = "Bobby"
version = "50.0.0"
repository = "https://www.github.com/hbons/Bobby"
homepage = "https://planetpeanut.studio/bobby"
authors = ["Hylke Bons <hello@planetpeanut.studio>"]
license = "GPL-3.0-or-later"
readme = "README.md"
edition = "2024"
[package.metadata.flatpak]
id = "studio.planetpeanut.Bobby"
[dependencies]
# From the Recommended Crate Directory – https://blessed.rs
chrono = "0.4.42"
rusqlite = { version = "0.37.0", features = ["bundled"] }
# From the GNOME Project – https://gnome.org
gio = "0.22.5"
gtk4 = { version = "0.11.2", features = ["gnome_50"] }
libadwaita = { version = "0.9.1", features = ["v1_8"] }
[[bin]]
name = "bobby"
path = "src/main.rs"
[profile.release]
opt-level = "z"
lto = true
debug = false
codegen-units = 1
panic = "abort"
strip = true