chore: format Cargo manifest with Taplo
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: If49e784ce4c704538529a41a237d6a7c6a6a6964
This commit is contained in:
parent
7ff2fd8a93
commit
06c1898040
1 changed files with 17 additions and 6 deletions
23
Cargo.toml
23
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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue