Use cargo fmt and conform to Style Guide (mostly)
This commit is contained in:
parent
1f1eac6369
commit
2982a13bc2
15 changed files with 980 additions and 888 deletions
16
Cargo.toml
16
Cargo.toml
|
|
@ -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 }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue