|
- [workspace]
- resolver = "3"
- members = ["apps/server"]
-
- [workspace.package]
- version = "0.1.0"
- edition = "2024"
- license = "MIT"
- repository = "https://ikibani.com/kashiro/rust-template"
-
- [workspace.dependencies]
- anyhow = "1"
- axum = { version = "0.8", features = ["json", "macros", "tokio", "ws"] }
- chrono = { version = "0.4", features = ["serde"] }
- dotenvy = "0.15"
- figment = { version = "0.10", features = ["toml", "env"] }
- http = "1"
- serde = { version = "1", features = ["derive"] }
- serde_json = "1"
- sqlx = { version = "0.9", default-features = false, features = ["runtime-tokio", "postgres", "migrate", "uuid", "chrono", "macros", "derive"] }
- thiserror = "2"
- tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "signal"] }
- tower = "0.5"
- tower-http = { version = "0.6", features = ["cors", "trace", "request-id", "util", "compression-gzip"] }
- tracing = "0.1"
- tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] }
- utoipa = { version = "5", features = ["axum_extras", "chrono", "uuid"] }
- utoipa-axum = "0.2"
- utoipa-swagger-ui = { version = "9", features = ["axum"] }
- uuid = { version = "1", features = ["serde", "v4"] }
- validator = { version = "0.20", features = ["derive"] }
|