2018-05-20 11:59:41 +02:00
|
|
|
[package]
|
|
|
|
name = "actix-web-httpauth"
|
2022-07-21 03:51:33 +02:00
|
|
|
version = "0.8.0"
|
2020-09-11 22:22:55 +02:00
|
|
|
authors = [
|
|
|
|
"svartalf <self@svartalf.info>",
|
|
|
|
"Yuki Okushi <huyuumi.dev@gmail.com>",
|
|
|
|
]
|
2021-12-18 04:37:23 +01:00
|
|
|
description = "HTTP authentication schemes for Actix Web"
|
2020-09-11 22:22:55 +02:00
|
|
|
keywords = ["http", "web", "framework", "authentication", "security"]
|
2020-10-03 02:32:01 +02:00
|
|
|
homepage = "https://actix.rs"
|
2021-10-21 17:10:09 +02:00
|
|
|
repository = "https://github.com/actix/actix-extras.git"
|
2018-05-20 11:59:41 +02:00
|
|
|
categories = ["web-programming::http-server"]
|
2020-07-14 12:16:32 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-05-15 16:38:55 +02:00
|
|
|
edition = "2018"
|
2018-05-20 12:15:59 +02:00
|
|
|
|
2020-01-30 01:31:25 +01:00
|
|
|
[lib]
|
|
|
|
name = "actix_web_httpauth"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2018-05-20 11:59:41 +02:00
|
|
|
[dependencies]
|
2021-12-08 08:29:12 +01:00
|
|
|
actix-utils = "3"
|
2022-07-21 03:50:22 +02:00
|
|
|
actix-web = { version = "4.1", default_features = false }
|
2021-12-08 08:29:12 +01:00
|
|
|
|
2023-01-30 17:53:30 +01:00
|
|
|
base64 = "0.21"
|
2022-07-21 03:50:22 +02:00
|
|
|
futures-core = "0.3.7"
|
|
|
|
futures-util = { version = "0.3.7", default-features = false, features = ["std"] }
|
|
|
|
log = "0.4"
|
2021-10-26 22:10:22 +02:00
|
|
|
pin-project-lite = "0.2.7"
|
2018-05-30 15:43:39 +02:00
|
|
|
|
2020-01-06 17:00:43 +01:00
|
|
|
[dev-dependencies]
|
2022-07-21 03:50:22 +02:00
|
|
|
actix-cors = "0.6"
|
|
|
|
actix-service = "2"
|
|
|
|
actix-web = { version = "4.1", default_features = false, features = ["macros"] }
|