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

32 lines
837 B
TOML

[package]
name = "actix-web-httpauth"
version = "0.5.0"
authors = [
"svartalf <self@svartalf.info>",
"Yuki Okushi <huyuumi.dev@gmail.com>",
]
description = "HTTP authentication schemes for Actix web"
readme = "README.md"
keywords = ["http", "web", "framework", "authentication", "security"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
documentation = "https://docs.rs/actix-web-httpauth/"
categories = ["web-programming::http-server"]
license = "MIT OR Apache-2.0"
edition = "2018"
[lib]
name = "actix_web_httpauth"
path = "src/lib.rs"
[dependencies]
actix-web = { version = "3.0.0", default_features = false }
base64 = "0.13"
bytes = "0.5"
futures-util = { version = "0.3", default-features = false }
[dev-dependencies]
actix-cors = "0.5"
actix-rt = "1.1.1"
actix-service = "1.0.6"