zoodex/Cargo.toml

23 lines
752 B
TOML
Raw Normal View History

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