2018-05-20 11:59:41 +02:00
|
|
|
[package]
|
|
|
|
name = "actix-web-httpauth"
|
2024-06-11 05:02:32 +02:00
|
|
|
version = "0.8.2"
|
2023-11-03 23:49:18 +01:00
|
|
|
description = "HTTP authentication schemes for Actix Web"
|
|
|
|
categories = ["web-programming"]
|
|
|
|
keywords = ["http", "web", "framework", "authentication", "security"]
|
2020-09-11 22:22:55 +02:00
|
|
|
authors = [
|
|
|
|
"svartalf <self@svartalf.info>",
|
|
|
|
"Yuki Okushi <huyuumi.dev@gmail.com>",
|
|
|
|
]
|
2024-06-11 05:02:32 +02:00
|
|
|
repository.workspace = true
|
2024-06-20 03:18:37 +02:00
|
|
|
homepage.workspace = true
|
2023-09-16 01:30:38 +02:00
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2018-05-20 12:15:59 +02:00
|
|
|
|
2023-04-11 13:22:28 +02:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
all-features = true
|
2020-01-30 01:31:25 +01:00
|
|
|
|
2018-05-20 11:59:41 +02:00
|
|
|
[dependencies]
|
2021-12-08 08:29:12 +01:00
|
|
|
actix-utils = "3"
|
2023-03-22 21:51:14 +01:00
|
|
|
actix-web = { version = "4.1", default-features = false }
|
2021-12-08 08:29:12 +01:00
|
|
|
|
2024-03-02 22:29:40 +01:00
|
|
|
base64 = "0.22"
|
|
|
|
futures-core = "0.3.17"
|
2023-09-16 04:14:04 +02:00
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
2022-07-21 03:50:22 +02:00
|
|
|
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]
|
2024-01-06 22:13:26 +01:00
|
|
|
actix-cors = "0.7"
|
2022-07-21 03:50:22 +02:00
|
|
|
actix-service = "2"
|
2023-03-22 21:51:14 +01:00
|
|
|
actix-web = { version = "4.1", default-features = false, features = ["macros"] }
|
2024-06-11 04:52:45 +02:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
tracing = "0.1.30"
|
2024-06-20 03:14:35 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|