2018-05-20 12:59:41 +03:00
|
|
|
[package]
|
|
|
|
name = "actix-web-httpauth"
|
2020-07-08 07:54:36 +09:00
|
|
|
version = "0.4.2"
|
2020-01-07 13:54:46 +09:00
|
|
|
authors = ["svartalf <self@svartalf.info>", "Yuki Okushi <huyuumi.dev@gmail.com>"]
|
2018-05-20 22:10:48 +03:00
|
|
|
description = "HTTP authentication schemes for actix-web"
|
2018-05-20 12:59:41 +03:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["http", "web", "framework"]
|
2020-01-30 18:08:20 +09:00
|
|
|
homepage = "https://github.com/actix/actix-extras"
|
|
|
|
repository = "https://github.com/actix/actix-extras.git"
|
2018-05-20 12:59:41 +03:00
|
|
|
documentation = "https://docs.rs/actix-web-httpauth/"
|
|
|
|
categories = ["web-programming::http-server"]
|
2020-07-14 19:16:32 +09:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-05-15 17:38:55 +03:00
|
|
|
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]
|
2020-01-07 01:00:43 +09:00
|
|
|
actix-web = { version = "^2.0", default_features = false }
|
|
|
|
actix-service = "1.0"
|
2020-05-21 17:23:59 +09:00
|
|
|
futures-util = { version = "0.3", default-features = false }
|
2020-01-10 05:57:42 +09:00
|
|
|
bytes = "0.5"
|
2020-04-03 17:01:36 +09:00
|
|
|
base64 = "0.12"
|
2018-05-30 16:43:39 +03:00
|
|
|
|
2020-01-07 01:00:43 +09:00
|
|
|
[dev-dependencies]
|
|
|
|
actix-rt = "1.0"
|
|
|
|
|
2018-05-30 16:43:39 +03:00
|
|
|
[features]
|
|
|
|
default = []
|
2020-01-30 14:44:05 +09:00
|
|
|
nightly = [] # leave it for compatibility
|