-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (36 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
46 lines (36 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "shoebox"
version = "0.0.4"
edition = "2021"
description = "A digital shoebox for organizing and preserving your videos"
authors = ["Developer"]
[dependencies]
# Web framework
axum = "0.8.4"
# Async runtime
tokio = { version = "1.47.1", features = ["full"] }
# Database
sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "sqlite", "postgres", "macros", "time", "json", "chrono"] }
# Serialization/Deserialization
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
# Error handling
anyhow = "1.0.98"
thiserror = "2.0.12"
# Logging
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
# Environment variables
dotenv = "0.15.0"
# FFmpeg
# The application uses the system's FFmpeg binary directly via std::process::Command
# No FFmpeg wrapper library is needed
# File operations
walkdir = "2.5.0"
tokio-util = { version = "0.7.16", features = ["io"] }
bytes = "1.11.1"
mime_guess = "2.0.5"
chrono = { version = "0.4.41", features = ["serde"] }
uuid = { version = "1.17.0", features = ["v4", "serde"] }
# Static file serving
tower-http = { version = "0.6.6", features = ["fs"] }