captains-log/backend/Cargo.toml
Drew Galbraith 81c160a50e
All checks were successful
Check / Backend (pull_request) Successful in 6m3s
Check / Frontend (pull_request) Successful in 1m55s
Add a docker build step.
2025-09-27 21:40:38 -07:00

24 lines
652 B
TOML

[package]
name = "backend"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.99"
axum = "0.8.4"
axum-extra = "0.10.1"
axum-macros = "0.5.0"
chrono = { version = "0.4.41", features = ["serde"] }
serde = "1.0.219"
sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio", "uuid", "chrono"] }
tokio = { version = "1.47.1", features = ["rt-multi-thread", "tracing"] }
tower-http = { version = "0.6.0", features = ["cors"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
uuid = { version = "1.18.0", features = ["serde", "v4"] }
[dev-dependencies]
axum-test = "18.0.0"
cargo-tarpaulin = "0.31"
hurl = "7.0.0"
hurl_core = "7.0.0"