34 lines
863 B
TOML
34 lines
863 B
TOML
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
askama = "0.12.1"
|
|
askama_axum = "0.4.0"
|
|
axum.workspace = true
|
|
axum-htmx = { version = "0.6", features = ["auto-vary"] }
|
|
futures = "0.3.30"
|
|
listenfd = "1.0.1"
|
|
notify = "6.1.1"
|
|
sea-orm = { workspace = true, features = [
|
|
# Same `ASYNC_RUNTIME` and `DATABASE_DRIVER` as in the migration crate
|
|
"sqlx-sqlite",
|
|
"runtime-tokio-rustls",
|
|
"macros",
|
|
] }
|
|
serde = { version = "1.0.204", features = ["derive"] }
|
|
thiserror.workspace = true
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
tower-http = { version = "0.5.2", features = ["fs"] }
|
|
tower-livereload = "0.9.3"
|
|
|
|
entity = { path = "../../entity" }
|
|
migration = { path = "../../migration" }
|
|
utils = { path = "../utils" }
|
|
|
|
[dev-dependencies]
|
|
cargo-watch = "8.5.1"
|
|
systemfd = "0.4.0"
|
|
sea-orm-cli.workspace = true
|