17 lines
437 B
TOML
17 lines
437 B
TOML
[package]
|
|
name = "server"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
axum = "0.8.8"
|
|
base64 = "0.22.1"
|
|
chrono = "0.4.42"
|
|
dotenvy = "0.15.7"
|
|
image = { version = "0.25.9", features = ["png"] }
|
|
tokio = { version = "1.49.0", features = ["full"] }
|
|
tower-http = { version = "0.6.8", features = ["fs", "trace", "cors"] }
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "fmt"] }
|