2026-01-08 14:00:01 +01:00
|
|
|
[package]
|
2026-01-21 13:35:28 +01:00
|
|
|
name = "zoodex"
|
2024-11-20 16:32:37 +01:00
|
|
|
version = "1.0.0"
|
2026-01-08 14:00:01 +01:00
|
|
|
authors = ["Reinout Meliesie <zedfrigg@kernelmaft.com>"]
|
2025-02-21 11:05:58 +01:00
|
|
|
edition = "2024"
|
2025-08-22 12:27:12 +02:00
|
|
|
rust-version = "1.89.0"
|
2024-11-20 16:32:37 +01:00
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
|
2026-01-08 14:00:01 +01:00
|
|
|
[profile.release]
|
2024-11-30 14:58:26 +01:00
|
|
|
lto = true
|
|
|
|
|
|
2026-01-21 16:56:05 +01:00
|
|
|
[build-dependencies]
|
|
|
|
|
# Keep version in sync with GLib as included in GTK4
|
|
|
|
|
glib-build-tools = "0.21.0"
|
|
|
|
|
|
2026-01-08 14:00:01 +01:00
|
|
|
[dependencies]
|
2026-01-21 13:20:47 +01:00
|
|
|
async-sqlite = { version = "0.5.4", default-features = false }
|
2026-01-08 14:00:01 +01:00
|
|
|
gtk4 = { version = "0.10.3", features = ["v4_20"] }
|
|
|
|
|
libadwaita = { version = "0.8.1", features = ["v1_8"] }
|
2026-01-21 13:20:47 +01:00
|
|
|
relm4 = { version = "0.10.0", features = ["gnome_48"] }
|
2026-01-21 13:41:35 +01:00
|
|
|
# Tokio as included in Relm4 doesn't have the macros feature enabled.
|
|
|
|
|
# Keep version in sync with the one Relm4 uses.
|
2026-01-21 13:20:47 +01:00
|
|
|
tokio = { version = "1.47.3", features = ["macros", "rt", "rt-multi-thread", "sync"] }
|