1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00
actix-extras/actix-web-httpauth/Cargo.toml
Rob Ede 77ee27b4ae
inline workspace package properties
msrv needs to be 1.64
2023-03-23 11:40:54 +00:00

35 lines
929 B
TOML

[package]
name = "actix-web-httpauth"
version = "0.8.0"
authors = [
"svartalf <self@svartalf.info>",
"Yuki Okushi <huyuumi.dev@gmail.com>",
]
description = "HTTP authentication schemes for Actix Web"
keywords = ["http", "web", "framework", "authentication", "security"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
categories = ["web-programming::http-server"]
license = "MIT OR Apache-2.0"
edition = "2018"
rust-version = "1.60"
[lib]
name = "actix_web_httpauth"
path = "src/lib.rs"
[dependencies]
actix-utils = "3"
actix-web = { version = "4.1", default-features = false }
base64 = "0.21"
futures-core = "0.3.7"
futures-util = { version = "0.3.7", default-features = false, features = ["std"] }
log = "0.4"
pin-project-lite = "0.2.7"
[dev-dependencies]
actix-cors = "0.6"
actix-service = "2"
actix-web = { version = "4.1", default-features = false, features = ["macros"] }