You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
559 B
20 lines
559 B
[package]
|
|
name = "inventory-app"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.91"
|
|
askama = { version = "0.12.1", features = ["with-axum"] }
|
|
axum = "0.7.7"
|
|
axum-htmx = "0.6.0"
|
|
dotenvy = "0.15.7"
|
|
sqlx = "0.8.2"
|
|
tokio = { version = "1.41.0", features = ["full", "tracing"] }
|
|
tower = { version = "0.5.1", features = ["util"] }
|
|
tower-http = { version = "0.6.1", features = ["fs", "trace"] }
|
|
tower-sessions = "0.13.0"
|
|
tower-sessions-sqlx-store = "0.14.1"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|