PersonalWebApplication/Server/Cargo.toml
cc 3af4893a81 feat(photos): per-user image store with size/count/path-safety guards
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-24 21:03:04 +08:00

23 lines
635 B
TOML

[package]
name = "server"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "RustServer"
path = "src/main.rs"
[dependencies]
axum = "0.8.9"
base64 = "0.22"
chrono = "0.4"
jsonwebtoken = "9"
reqwest = { version = "0.12", default-features = false, features = ["json", "gzip", "rustls-tls"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
sha2 = "0.10.9"
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio", "tls-rustls", "mysql", "macros"] }
sysinfo = "0.39.3"
tokio = { version = "1.52.3", features = ["full"] }
tower-http = { version = "0.7.0", features = ["cors", "fs"] }