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