2018-05-20 11:59:41 +02:00
|
|
|
[package]
|
|
|
|
name = "actix-web-httpauth"
|
2020-01-14 16:03:23 +01:00
|
|
|
version = "0.4.0"
|
2020-01-07 05:54:46 +01:00
|
|
|
authors = ["svartalf <self@svartalf.info>", "Yuki Okushi <huyuumi.dev@gmail.com>"]
|
2018-05-20 21:10:48 +02:00
|
|
|
description = "HTTP authentication schemes for actix-web"
|
2018-05-20 11:59:41 +02:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["http", "web", "framework"]
|
2020-01-07 05:54:46 +01:00
|
|
|
homepage = "https://github.com/actix/actix-web-httpauth"
|
|
|
|
repository = "https://github.com/actix/actix-web-httpauth.git"
|
2018-05-20 11:59:41 +02:00
|
|
|
documentation = "https://docs.rs/actix-web-httpauth/"
|
|
|
|
categories = ["web-programming::http-server"]
|
2019-05-15 16:38:55 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-01-14 16:03:23 +01:00
|
|
|
exclude = [".github/*", ".gitignore"]
|
2019-05-15 16:38:55 +02:00
|
|
|
edition = "2018"
|
2018-05-20 12:15:59 +02:00
|
|
|
|
2018-05-20 11:59:41 +02:00
|
|
|
[dependencies]
|
2020-01-06 17:00:43 +01:00
|
|
|
actix-web = { version = "^2.0", default_features = false }
|
|
|
|
actix-service = "1.0"
|
|
|
|
futures = "0.3"
|
2020-01-09 21:57:42 +01:00
|
|
|
bytes = "0.5"
|
|
|
|
base64 = "0.11"
|
2018-05-30 15:43:39 +02:00
|
|
|
|
2020-01-06 17:00:43 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
actix-rt = "1.0"
|
|
|
|
|
2018-05-30 15:43:39 +02:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
nightly = []
|
|
|
|
|
|
|
|
[badges]
|
2019-04-26 20:56:17 +02:00
|
|
|
maintenance = { status = "passively-maintained" }
|