chore: format Cargo manifest with Taplo

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: If49e784ce4c704538529a41a237d6a7c6a6a6964
This commit is contained in:
raf 2026-01-31 15:20:10 +03:00
commit 06c1898040
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -1,9 +1,9 @@
[workspace]
members = [
"crates/pinakes-core",
"crates/pinakes-server",
"crates/pinakes-tui",
"crates/pinakes-ui",
"crates/pinakes-core",
"crates/pinakes-server",
"crates/pinakes-tui",
"crates/pinakes-ui",
]
resolver = "3"
@ -53,7 +53,11 @@ kamadak-exif = "0.6"
rusqlite = { version = "0.37", features = ["bundled", "column_decltype"] }
# Database - PostgreSQL
tokio-postgres = { version = "0.7", features = ["with-uuid-1", "with-chrono-0_4", "with-serde_json-1"] }
tokio-postgres = { version = "0.7", features = [
"with-uuid-1",
"with-chrono-0_4",
"with-serde_json-1",
] }
deadpool-postgres = "0.14"
postgres-types = { version = "0.2", features = ["derive"] }
@ -88,7 +92,14 @@ dioxus = { version = "0.7", features = ["desktop", "router"] }
async-trait = "0.1"
# Image processing (thumbnails)
image = { version = "0.25", default-features = false, features = ["jpeg", "png", "webp", "gif", "tiff", "bmp"] }
image = { version = "0.25", default-features = false, features = [
"jpeg",
"png",
"webp",
"gif",
"tiff",
"bmp",
] }
# Markdown rendering
pulldown-cmark = "0.12"