26 lines
900 B
TOML
26 lines
900 B
TOML
[package]
|
|
name = "auth-test"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
argon2 = "0.5"
|
|
axum = { version = "0.7", features = ["default", "macros", "multipart", "ws"], default-features = false }
|
|
base64 = "0.22"
|
|
dotenvy = "0.15"
|
|
futures = "0.3"
|
|
http = "1.0.0"
|
|
humantime = "2.1.0"
|
|
hyper = { version = "1.1", features = ["full"] }
|
|
lettre = { version = "0.11", default-features = false, features = ["builder", "hostname", "pool", "smtp-transport", "tokio1", "tokio1-rustls-tls"] }
|
|
log = "0.4"
|
|
num_cpus = "1.16"
|
|
once_cell = "1.19"
|
|
pasetors = "0.6"
|
|
serde = { version = "1.0", features = ["derive", "rc", "std"] }
|
|
serde_json = "1.0"
|
|
sqlx = { version = "0.7", features = ["default", "chrono", "postgres", "runtime-tokio"] }
|
|
tokio = { version = "1.35", features = ["full"] }
|
|
tower = "0.4"
|
|
tower-http = { version = "0.5", features = ["full"] }
|
|
uuid = { version = "1.8.0", features = ["v7", "fast-rng"] }
|