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

35 lines
969 B
TOML
Raw Normal View History

2018-05-20 12:59:41 +03:00
[package]
name = "actix-web-httpauth"
version = "0.8.1"
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"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
2018-05-20 12:59:41 +03:00
categories = ["web-programming::http-server"]
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 }
base64 = "0.21"
futures-core = "0.3.7"
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.6"
actix-service = "2"
2023-03-22 20:51:14 +00:00
actix-web = { version = "4.1", default-features = false, features = ["macros"] }