chore: specify full semver-compatible versions for deps
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ica142c5503a3a76c50f30090f8e7edee6a6a6964
This commit is contained in:
parent
06c1898040
commit
81bba926ad
2 changed files with 1103 additions and 64 deletions
1074
Cargo.lock
generated
1074
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
81
Cargo.toml
81
Cargo.toml
|
|
@ -1,5 +1,6 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
|
"crates/pinakes-plugin-api",
|
||||||
"crates/pinakes-core",
|
"crates/pinakes-core",
|
||||||
"crates/pinakes-server",
|
"crates/pinakes-server",
|
||||||
"crates/pinakes-tui",
|
"crates/pinakes-tui",
|
||||||
|
|
@ -14,85 +15,85 @@ license = "MIT"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
# Async runtime
|
# Async runtime
|
||||||
tokio = { version = "1", features = ["full"] }
|
tokio = { version = "1.49.0", features = ["full"] }
|
||||||
|
|
||||||
# Serialization
|
# Serialization
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1.0.228", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1.0.149"
|
||||||
toml = "0.9"
|
toml = "0.9.11"
|
||||||
|
|
||||||
# CLI argument parsing
|
# CLI argument parsing
|
||||||
clap = { version = "4", features = ["derive", "env"] }
|
clap = { version = "4.5.56", features = ["derive", "env"] }
|
||||||
|
|
||||||
# Date/time
|
# Date/time
|
||||||
chrono = { version = "0.4", features = ["serde"] }
|
chrono = { version = "0.4.43", features = ["serde"] }
|
||||||
|
|
||||||
# IDs
|
# IDs
|
||||||
uuid = { version = "1", features = ["v7", "serde"] }
|
uuid = { version = "1.20.0", features = ["v7", "serde"] }
|
||||||
|
|
||||||
# Error handling
|
# Error handling
|
||||||
thiserror = "2"
|
thiserror = "2.0.18"
|
||||||
anyhow = "1"
|
anyhow = "1.0.100"
|
||||||
|
|
||||||
# Logging
|
# Logging
|
||||||
tracing = "0.1"
|
tracing = "0.1.44"
|
||||||
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json"] }
|
||||||
|
|
||||||
# Hashing
|
# Hashing
|
||||||
blake3 = "1"
|
blake3 = "1.8.3"
|
||||||
|
|
||||||
# Metadata extraction
|
# Metadata extraction
|
||||||
lofty = "0.22"
|
lofty = "0.22.4"
|
||||||
lopdf = "0.39"
|
lopdf = "0.39.0"
|
||||||
epub = "2"
|
epub = "2.1.5"
|
||||||
matroska = "0.30"
|
matroska = "0.30.0"
|
||||||
gray_matter = "0.3"
|
gray_matter = "0.3.2"
|
||||||
kamadak-exif = "0.6"
|
kamadak-exif = "0.6.1"
|
||||||
|
|
||||||
# Database - SQLite
|
# Database - SQLite
|
||||||
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 = [
|
tokio-postgres = { version = "0.7.16", features = [
|
||||||
"with-uuid-1",
|
"with-uuid-1",
|
||||||
"with-chrono-0_4",
|
"with-chrono-0_4",
|
||||||
"with-serde_json-1",
|
"with-serde_json-1",
|
||||||
] }
|
] }
|
||||||
deadpool-postgres = "0.14"
|
deadpool-postgres = "0.14.1"
|
||||||
postgres-types = { version = "0.2", features = ["derive"] }
|
postgres-types = { version = "0.2.12", features = ["derive"] }
|
||||||
|
|
||||||
# Migrations
|
# Migrations
|
||||||
refinery = { version = "0.9", features = ["rusqlite", "tokio-postgres"] }
|
refinery = { version = "0.9.0", features = ["rusqlite", "tokio-postgres"] }
|
||||||
|
|
||||||
# Filesystem
|
# Filesystem
|
||||||
walkdir = "2"
|
walkdir = "2.5.0"
|
||||||
notify = { version = "8", features = ["macos_fsevent"] }
|
notify = { version = "8.2.0", features = ["macos_fsevent"] }
|
||||||
|
|
||||||
# Search parser
|
# Search parser
|
||||||
winnow = "0.7"
|
winnow = "0.7.14"
|
||||||
|
|
||||||
# HTTP server
|
# HTTP server
|
||||||
axum = { version = "0.8", features = ["macros"] }
|
axum = { version = "0.8.8", features = ["macros"] }
|
||||||
tower = "0.5"
|
tower = "0.5.3"
|
||||||
tower-http = { version = "0.6", features = ["cors", "trace"] }
|
tower-http = { version = "0.6.8", features = ["cors", "trace"] }
|
||||||
governor = "0.8"
|
governor = "0.8.1"
|
||||||
tower_governor = "0.6"
|
tower_governor = "0.6.0"
|
||||||
|
|
||||||
# HTTP client
|
# HTTP client
|
||||||
reqwest = { version = "0.13", features = ["json", "query"] }
|
reqwest = { version = "0.13.1", features = ["json", "query"] }
|
||||||
|
|
||||||
# TUI
|
# TUI
|
||||||
ratatui = "0.30"
|
ratatui = "0.30.0"
|
||||||
crossterm = "0.29"
|
crossterm = "0.29.0"
|
||||||
|
|
||||||
# Desktop/Web UI
|
# Desktop/Web UI
|
||||||
dioxus = { version = "0.7", features = ["desktop", "router"] }
|
dioxus = { version = "0.7.3", features = ["desktop", "router"] }
|
||||||
|
|
||||||
# Async trait (dyn-compatible async methods)
|
# Async trait (dyn-compatible async methods)
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
|
|
||||||
# Image processing (thumbnails)
|
# Image processing (thumbnails)
|
||||||
image = { version = "0.25", default-features = false, features = [
|
image = { version = "0.25.9", default-features = false, features = [
|
||||||
"jpeg",
|
"jpeg",
|
||||||
"png",
|
"png",
|
||||||
"webp",
|
"webp",
|
||||||
|
|
@ -102,10 +103,14 @@ image = { version = "0.25", default-features = false, features = [
|
||||||
] }
|
] }
|
||||||
|
|
||||||
# Markdown rendering
|
# Markdown rendering
|
||||||
pulldown-cmark = "0.12"
|
pulldown-cmark = "0.12.2"
|
||||||
|
|
||||||
# Password hashing
|
# Password hashing
|
||||||
argon2 = "0.5"
|
argon2 = { version = "0.5.3", features = ["std"] }
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
mime_guess = "2"
|
mime_guess = "2.0.5"
|
||||||
|
|
||||||
|
# WASM runtime for plugins
|
||||||
|
wasmtime = { version = "30.0.2", features = ["component-model"] }
|
||||||
|
wit-bindgen = "0.39.0"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue