2018-05-20 11:59:41 +02:00
|
|
|
[package]
|
|
|
|
name = "actix-web-httpauth"
|
2020-09-11 22:22:55 +02:00
|
|
|
version = "0.5.0"
|
|
|
|
authors = [
|
|
|
|
"svartalf <self@svartalf.info>",
|
|
|
|
"Yuki Okushi <huyuumi.dev@gmail.com>",
|
|
|
|
]
|
|
|
|
description = "HTTP authentication schemes for Actix web"
|
2018-05-20 11:59:41 +02:00
|
|
|
readme = "README.md"
|
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"
|
2020-01-30 10:08:20 +01:00
|
|
|
repository = "https://github.com/actix/actix-extras.git"
|
2018-05-20 11:59:41 +02:00
|
|
|
documentation = "https://docs.rs/actix-web-httpauth/"
|
|
|
|
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]
|
2020-09-11 17:26:15 +02:00
|
|
|
actix-web = { version = "3.0.0", default_features = false }
|
|
|
|
actix-service = "1.0.6"
|
2020-05-21 10:23:59 +02:00
|
|
|
futures-util = { version = "0.3", default-features = false }
|
2020-01-09 21:57:42 +01:00
|
|
|
bytes = "0.5"
|
2020-04-03 10:01:36 +02:00
|
|
|
base64 = "0.12"
|
2018-05-30 15:43:39 +02:00
|
|
|
|
2020-01-06 17:00:43 +01:00
|
|
|
[dev-dependencies]
|
2020-09-11 17:26:15 +02:00
|
|
|
actix-rt = "1"
|