Use cargo fmt and conform to Style Guide (mostly)

This commit is contained in:
Reinout Meliesie 2026-01-08 14:00:01 +01:00
commit 2982a13bc2
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6
15 changed files with 980 additions and 888 deletions

View file

@ -1,18 +1,18 @@
[ package ]
[package]
name = "zoodex"
version = "1.0.0"
authors = [ "Reinout Meliesie <zedfrigg@kernelmaft.com>" ]
authors = ["Reinout Meliesie <zedfrigg@kernelmaft.com>"]
edition = "2024"
rust-version = "1.89.0"
license = "GPL-3.0-or-later"
[ profile . release ]
[profile.release]
lto = true
[ dependencies ]
async-sqlite = { version = "0.5.3" , default-features = false }
[dependencies]
async-sqlite = { version = "0.5.3", default-features = false }
fallible-iterator = "0.3.0" # Must match version used by async-sqlite
futures = "0.3.31"
gtk4 = { version = "0.10.3" , features = [ "v4_20" ] }
libadwaita = { version = "0.8.1" , features = [ "v1_8" ] }
relm4-macros = { version = "0.10.1" , default-features = false }
gtk4 = { version = "0.10.3", features = ["v4_20"] }
libadwaita = { version = "0.8.1", features = ["v1_8"] }
relm4-macros = { version = "0.10.1", default-features = false }