1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 23:51:06 +01:00
actix-extras/actix-web-httpauth/Cargo.toml

35 lines
953 B
TOML
Raw Normal View History

2018-05-20 11:59:41 +02:00
[package]
name = "actix-web-httpauth"
version = "0.8.1"
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>",
]
homepage = "https://actix.rs"
2023-11-03 23:49:18 +01:00
repository = "https://github.com/actix/actix-extras"
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
[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]
actix-utils = "3"
2023-03-22 21:51:14 +01:00
actix-web = { version = "4.1", default-features = false }
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"] }
log = "0.4"
pin-project-lite = "0.2.7"
2018-05-30 15:43:39 +02:00
2020-01-06 17:00:43 +01:00
[dev-dependencies]
actix-cors = "0.7"
actix-service = "2"
2023-03-22 21:51:14 +01:00
actix-web = { version = "4.1", default-features = false, features = ["macros"] }