feat: add auth things

This commit is contained in:
Sandro Eiler 2023-10-07 22:14:22 +02:00
parent 42a75ba800
commit 88c4045d33
7 changed files with 182 additions and 20 deletions

View file

@ -6,13 +6,17 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.29.1", features = ["full"] }
axum = "0.6.18"
tokio = { version = "1.32.0", features = ["full"] }
# Serde / json
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
tower-http = { version = "0.4.1", features = ["fs"] }
# Axum
axum = { version = "0.6.20" }
tower-http = { version = "0.4.4", features = ["fs"] }
tower-cookies = "0.9"
# Others
lazy-regex = "3"
[dev-dependencies]
anyhow = "1"
httpc-test = "0.1.1"
httpc-test = "0.1.5"