From 06c1898040a7aec5bb9ad1afbe6372f1c3515975 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 31 Jan 2026 15:20:10 +0300 Subject: [PATCH] chore: format Cargo manifest with Taplo Signed-off-by: NotAShelf Change-Id: If49e784ce4c704538529a41a237d6a7c6a6a6964 --- Cargo.toml | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index afd2b1b..5927f11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"