25 lines
831 B
TOML
25 lines
831 B
TOML
[package]
|
|
name = "auth"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = {version = "0.7.4", features = [ "default", "form", "tracing", "macros" ]}
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
sqlx = { version = "0.7.4", features = ["runtime-tokio", "sqlite"] }
|
|
tower-cookies = "0.10.0"
|
|
serde = "1.0.190"
|
|
uuid = { version = "1.5.0", features = ["v4", "fast-rng"] }
|
|
totp-rs = "5.4.0"
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
tower-http = { version = "0.5", features = ["trace"] }
|
|
tracing = "0.1.40"
|
|
askama = "0.10"
|
|
minijinja = "1.0.9"
|
|
once_cell = "1.18.0"
|
|
tower-sessions = "0.11.0"
|
|
webauthn-rs = { version = "0.4.8", features = [ "danger-allow-state-serialisation" ]}
|
|
serde_json = "1.0.114"
|