[package] name = "lyrs" version = "0.1.0" edition = "2021" [dependencies] anyhow = "1.0.75" # web axum = { version = "0.6.20", features = ["headers"] } axum_csrf = { version = "0.8.0", features = ["layer"] } base64 = "0.21.5" cookie = "0.18.0" maud = "0.25.0" serde = { version = "1.0.192", features = ["derive"] } tokio = { version = "1.34.0", features = ["full", "macros", "rt-multi-thread"] } tower-http = { version = "0.4.4", features = ["fs"] } # instrumentation tracing = "0.1.40" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } # fancy during-development stuff notify = "6.1.1" tower-livereload = "0.8.2" argon2 = { version = "0.5.2", features = ["std"] } thiserror = "1.0.50" axum-macros = "0.3.8" color-eyre = "0.6.2" # db sea-orm = { version = "0.12.6", features = ["sqlx-sqlite", "macros", "runtime-tokio-rustls"] } sea-orm-migration = { version = "0.12.6", features = ["sqlx-sqlite"] } uuid = { version = "1.5.0", features = ["v7", "atomic", "fast-rng", "macro-diagnostics"] } password-hash = "0.5.0" axum-login = "0.7.3" tower = "0.4.13"