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

29 lines
765 B
TOML
Raw Normal View History

2018-05-20 12:59:41 +03:00
[package]
name = "actix-web-httpauth"
2021-06-27 07:28:26 +01:00
version = "0.6.0-beta.2"
2020-09-11 21:22:55 +01:00
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"
2021-06-27 07:02:38 +01:00
repository = "https://github.com/actix/actix-extras"
2018-05-20 12:59:41 +03:00
categories = ["web-programming::http-server"]
license = "MIT OR Apache-2.0"
edition = "2018"
2018-05-20 13:15:59 +03:00
2020-01-30 00:31:25 +00:00
[lib]
name = "actix_web_httpauth"
path = "src/lib.rs"
2018-05-20 12:59:41 +03:00
[dependencies]
2021-06-27 07:02:38 +01:00
actix-web = { version = "4.0.0-beta.8", default_features = false }
actix-service = "2.0.0"
base64 = "0.13"
futures-util = { version = "0.3.7", default-features = false }
2018-05-30 16:43:39 +03:00
2020-01-07 01:00:43 +09:00
[dev-dependencies]
2021-06-27 07:28:26 +01:00
actix-cors = "0.6.0-beta.2"
2021-03-21 23:50:26 +01:00
actix-rt = "2"