Nicole Tietz-Sokolskaya
3acafda0d3
and templates. Tihs also adds an ADR for using Tailwind. Add a pile of dependencies setup orm, add admin tool admin tool does random pass if none provided add tons of css stuff finish up web skeleton
31 lines
1.1 KiB
TOML
31 lines
1.1 KiB
TOML
[package]
|
|
name = "pique"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "pique"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.81"
|
|
argon2 = { version = "0.5.3", features = ["rand", "std"] }
|
|
async-trait = "0.1.78"
|
|
axum = "0.7.4"
|
|
axum-htmx = { version = "0.5.0", features = ["guards", "serde"] }
|
|
axum-login = "0.14.0"
|
|
clap = { version = "4.5.3", features = ["derive", "env"] }
|
|
dotenvy = "0.15.7"
|
|
env_logger = "0.11.3"
|
|
minijinja = { version = "1.0.14", features = ["loader"] }
|
|
minijinja-autoreload = "1.0.14"
|
|
rand = "0.8.5"
|
|
sea-orm = { version = "0.12.15", features = ["sqlx-sqlite", "macros", "runtime-tokio-rustls"] }
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
thiserror = "1.0.58"
|
|
tokio = { version = "1.36.0", features = ["rt", "full"] }
|
|
tower-http = { version = "0.5.2", features = ["fs", "trace"] }
|
|
tower-sessions = "0.11.1"
|
|
tower-sessions-moka-store = "0.11.0"
|
|
tower-sessions-sqlx-store = { version = "0.11.0", features = ["sqlite"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|