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.
inventory-app/Cargo.toml

27 lines
834 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"
oauth2 = "4.4.2"
sqlx = { version = "0.8.2", features = ["runtime-tokio", "sqlite"] }
time = "0.3.36"
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 = { version = "0.14.1", features = ["sqlite"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
serde = { version = "1.0.213", features = ["derive"] }
reqwest = { version = "0.12.9", features = ["json"] }
[dev-dependencies]
httpc-test = "0.1.10"

Powered by TurnKey Linux.