1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-22 23:05:56 +01:00

40 lines
1.0 KiB
TOML
Raw Normal View History

2018-05-20 12:59:41 +03:00
[package]
name = "actix-web-httpauth"
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>",
]
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
[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]
actix-utils = "3"
2023-03-22 20:51:14 +00:00
actix-web = { version = "4.1", default-features = false }
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"] }
log = "0.4"
pin-project-lite = "0.2.7"
2018-05-30 16:43:39 +03:00
2020-01-07 01:00:43 +09:00
[dev-dependencies]
actix-cors = "0.7"
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