-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (47 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
58 lines (47 loc) · 1.4 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "forwardauth-rs"
version = "2.2.0"
edition = "2021"
description = "A Rust-based forward authentication service for Traefik with Auth0/OIDC support"
license = "GPL-3.0"
repository = "https://github.com/radicand/forwardauth-rs"
readme = "README.md"
[dependencies]
# Web framework
axum = { version = "0.8", features = ["macros"] }
axum-extra = { version = "0.10", features = ["cookie"] }
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6", features = ["trace", "cors"] }
tokio = { version = "1", features = ["full"] }
hyper = { version = "1", features = ["full"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# HTTP client
reqwest = { version = "0.12", features = ["json", "cookies"] }
# JWT / Auth
jsonwebtoken = { version = "10", features = ["rust_crypto"] }
base64 = "0.22"
url = "2"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Configuration
config = { version = "0.14", features = ["yaml"] }
# Caching
moka = { version = "0.12", features = ["future"] }
# Error handling
thiserror = "2"
anyhow = "1"
# Crypto
uuid = { version = "1", features = ["v4"] }
rand = "0.9"
# Time
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
tokio-test = "0.4"
wiremock = "0.6"
tower = { version = "0.5", features = ["util"] }
http-body-util = "0.1"
rsa = "0.9"