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
15
Cargo.toml
15
Cargo.toml
|
|
@ -53,7 +53,11 @@ kamadak-exif = "0.6"
|
||||||
rusqlite = { version = "0.37", features = ["bundled", "column_decltype"] }
|
rusqlite = { version = "0.37", features = ["bundled", "column_decltype"] }
|
||||||
|
|
||||||
# Database - PostgreSQL
|
# 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"
|
deadpool-postgres = "0.14"
|
||||||
postgres-types = { version = "0.2", features = ["derive"] }
|
postgres-types = { version = "0.2", features = ["derive"] }
|
||||||
|
|
||||||
|
|
@ -88,7 +92,14 @@ dioxus = { version = "0.7", features = ["desktop", "router"] }
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
|
|
||||||
# Image processing (thumbnails)
|
# 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
|
# Markdown rendering
|
||||||
pulldown-cmark = "0.12"
|
pulldown-cmark = "0.12"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue