diff options
| author | mrw1593 <botahamec@outlook.com> | 2023-05-29 15:55:51 -0400 |
|---|---|---|
| committer | mrw1593 <botahamec@outlook.com> | 2023-05-29 15:55:51 -0400 |
| commit | a84c964b725ad2012cdf6a605ff264c60e0b0e59 (patch) | |
| tree | 35ffadcf2d976e440cb0ff172c8a440df5cbc8be /Cargo.lock | |
| parent | 614c81c0f239940acb313e067dafc3213f399b10 (diff) | |
Create service for parsing Basic Authorization
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -28,6 +28,7 @@ dependencies = [ "actix-codec", "actix-rt", "actix-service", + "actix-tls", "actix-utils", "ahash 0.8.3", "base64 0.21.0", @@ -121,6 +122,24 @@ dependencies = [ ] [[package]] +name = "actix-tls" +version = "3.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297" +dependencies = [ + "actix-codec", + "actix-rt", + "actix-service", + "actix-utils", + "futures-core", + "log", + "pin-project-lite", + "tokio-rustls", + "tokio-util", + "webpki-roots", +] + +[[package]] name = "actix-utils" version = "3.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -143,6 +162,7 @@ dependencies = [ "actix-rt", "actix-server", "actix-service", + "actix-tls", "actix-utils", "actix-web-codegen", "ahash 0.7.6", @@ -1613,6 +1633,7 @@ name = "rust-pw-server" version = "0.1.0" dependencies = [ "actix-web", + "base64 0.21.0", "dotenv", "exun", "grass", @@ -1624,6 +1645,7 @@ dependencies = [ "rust-argon2", "rust-ini", "serde", + "serde_urlencoded", "sqlx", "tera", "thiserror", |
