mirror of
https://github.com/actix/actix-extras.git
synced 2025-06-26 10:27:42 +02:00
improve httpauth ergonomics (#264)
* improve httpauth ergonomics * update changelog * code and docs cleanup * docs * docs clean * remove AuthExtractor trait * update changelog
This commit is contained in:
@ -18,15 +18,16 @@ name = "actix_web_httpauth"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
actix-service = "2"
|
||||
actix-utils = "3"
|
||||
actix-web = { version = "4", default_features = false }
|
||||
actix-web = { version = "4.1", default_features = false }
|
||||
|
||||
base64 = "0.13"
|
||||
futures-util = { version = "0.3.7", default-features = false }
|
||||
futures-core = { version = "0.3.7", default-features = false }
|
||||
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.0"
|
||||
actix-web = { version = "4", default_features = false, features = ["macros"] }
|
||||
actix-cors = "0.6"
|
||||
actix-service = "2"
|
||||
actix-web = { version = "4.1", default_features = false, features = ["macros"] }
|
||||
|
Reference in New Issue
Block a user