[package] name = "family_budget" version = "0.1.0" edition = "2024" [dependencies] tokio = { version = "1.49.0", features = ["full"] } sea-orm = { version = "1.1.19", features = ["sqlx-postgres", "runtime-tokio-rustls", "macros"] } sea-orm-migration = { version = "1.1.19", default-features = false, features = ["sqlx-postgres", "runtime-tokio-rustls"] } dotenvy = "0.15.7" axum = { version = "0.8.8", features = ["json"] } tower-http = { version = "0.6.8", features = ["cors"] } chrono = { version = "0.4.42", features = ["serde"] } serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0" utoipa = { version = "5.4.0", features = ["axum_extras", "chrono", "decimal_float"] } utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] } axum-login = "0.18.0" tower-sessions = "0.14.0" tower-sessions-sqlx-store = { version = "0.15.0", features = ["postgres"] } argon2 = "0.5" async-trait = "0.1" thiserror = "2.0" time = "0.3" oauth2 = { version = "5.0.0", features = ["reqwest"] } reqwest = { version = "0.13.1", features = ["json"] } rand = "0.9.2" uuid = { version = "1", features = ["v4"] } sha2 = "0.10" hex = "0.4" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] }