-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
37 lines (33 loc) · 1.37 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "actix-web-middleware-keycloak-auth"
version = "0.5.0"
authors = ["David Sferruzza <[email protected]>"]
edition = "2021"
description = "A middleware for Actix Web that handles authentication with a JWT emitted by Keycloak"
repository = "https://github.com/dsferruzza/actix-web-middleware-keycloak-auth"
readme = "README.md"
documentation = "https://docs.rs/actix-web-middleware-keycloak-auth"
categories = ["authentication", "web-programming::http-server"]
keywords = ["actix-web", "middleware", "authentication", "jwt", "keycloak"]
license = "MIT"
[dependencies]
actix-web = { version = "4.9.0", default-features = false }
chrono = { version = "0.4.38", features = ["serde"] }
futures-util = { version = "0.3.30", default-features = false, features = ["std"] }
log = "0.4.22"
jsonwebtoken = "9.3.0"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
uuid = { version = "1.10.0", features = ["serde"] }
paperclip = { version = "0.9.1", default-features = false, features = ["actix4"], optional = true }
[dev-dependencies]
actix-web = { version = "4.9.0", default-features = false, features = ["macros"] }
env_logger = "0.11.5"
uuid = { version = "1.10.0", features = ["serde", "v4"] }
[features]
default = []
paperclip_compat = ["paperclip"]
[[example]]
name = "paperclip"
path = "examples/paperclip.rs"
required-features = ["paperclip_compat"]