Add auth module

This commit is contained in:
Lennart
2023-09-07 18:50:21 +02:00
parent dcd6c01b12
commit e7d73e180a
6 changed files with 232 additions and 0 deletions

14
crates/auth/Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "rustical_auth"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4.4.0"
actix-web-httpauth = "0.8.0"
derive_more = "0.99.17"
futures-util = "0.3.28"
password-auth = "1.0.0"
serde = { version = "1.0.188", features = ["derive"] }