forked from digilectron/actix-4-jwt-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 1.01 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]
authors = ["Olger Warnier <olger@spectare.nl>"]
categories = [
"network-programming",
"asynchronous",
"web-programming::http-server",
]
description = "OIDC authentication extractor for Actix 4"
edition = "2021"
keywords = ["actix", "http", "web", "cryptography"]
license = "MIT"
name = "actix-4-jwt-auth"
repository = "https://github.com/spectare/actix-4-jwt-auth"
version = "1.2.3"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
actix-web = { version="4.6.0", features=["rustls"]}
biscuit = "0.7.0"
#biscuit = { path = "../biscuit/" }
futures = "0.3.30"
futures-core = {version = "0.3.30", default-features = false, features = ["alloc"]}
futures-util = {version = "0.3.30", default-features = false, features = ["alloc"]}
awc = { version="3.5.0", features=["rustls"] }
serde = {version = "1", features = ["derive"]}
serde_derive = "1"
serde_json = "1"
thiserror = "1.0.61"
[dev-dependencies]
pretty_assertions= "1.4.0"
actix-rt = "2.9.0"
bytes = "1.6.0"
ring = "0.17.8"
num = "0.4"