-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 1.03 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
[package]
name = "dtz-identity-auth"
version = "1.1.2"
edition = "2021"
authors = ["Jens Walter <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/DownToZero-Cloud/dtz-identity-auth/"
description = "Provides authentication traits for DownToZero backends."
rust-version = "1.71"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
axum = { version = "0.7", features = ["http2"] }
base64 = "0.22"
cookie = "0.18"
dtz-identifier = { version = "1" }
http-body-util = "0.1"
hyper = { version = "1", features = ["http1", "http2"] }
hyper-rustls = { version = "0.27", features = ["http1", "http2"] }
hyper-util = { version = "0.1", features = ["full"] }
jwt-simple = { version = "0.12", default-features = false, features = [
"pure-rust",
] }
lru_time_cache = "0.11"
once_cell = "1.19"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "0.7"
uuid = { version = "1", features = ["serde", "v4"] }
[dev-dependencies]
tokio = { version = "1" }
reqwest = { version = "0.12" }