ci / docker (push) Successful in 13m11s
- /assets/*: immutable one-year cache on hits, plain 404 on misses (previously a missing asset fell back to index.html served as its content type, breaking CSS/JS after every deploy for cached clients) - index.html and SPA routes: no-cache, so deploys are visible immediately
52 lines
1.4 KiB
TOML
52 lines
1.4 KiB
TOML
[package]
|
|
name = "photos"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "photos"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "server"
|
|
path = "src/bin/server.rs"
|
|
|
|
[[bin]]
|
|
name = "worker"
|
|
path = "src/bin/worker.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
argon2 = "0.5"
|
|
crc32fast = "1"
|
|
aws-config = { version = "1", features = ["behavior-version-latest"] }
|
|
aws-sdk-s3 = "1"
|
|
axum = { version = "0.8", features = ["macros"] }
|
|
axum-extra = { version = "0.10", features = ["cookie", "cookie-signed"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
futures = "0.3"
|
|
hex = "0.4"
|
|
image = "0.25"
|
|
rand = "0.8"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha2 = "0.10"
|
|
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono", "json", "migrate"] }
|
|
tempfile = "3"
|
|
time = "0.3"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-util = { version = "0.7", features = ["io"] }
|
|
tower = { version = "0.5", features = ["util"] }
|
|
tower-http = { version = "0.6", features = ["fs", "set-header", "trace"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
urlencoding = "2"
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
|
|
[dev-dependencies]
|
|
cookie = { version = "0.18", features = ["signed"] }
|
|
|
|
[profile.release]
|
|
lto = "thin"
|