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