-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 950 Bytes
/
Cargo.toml
File metadata and controls
38 lines (36 loc) · 950 Bytes
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
[workspace]
members = [
"packages/core",
"packages/oidc",
"packages/utils",
"packages/creds",
"packages/creds-manage",
"apps/server",
"apps/cli",
]
resolver = "3"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
axum = { version = "0.8", features = ["macros"] }
serde_json = "1"
snafu = "0.9"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
clap = { version = "4", features = ["derive"] }
openidconnect = "4"
regex = "1"
http = "1"
url = "2"
serde_with = "3"
base64 = "0.22"
figment = { version = "0.10", features = ["toml", "env"] }
web-route = "0.2"
typed-builder = "0.23.2"
argon2 = "0.6.0-rc.7"
sha2 = "0.10"
hex = "0.4"
rand = { version = "0.10", features = ["thread_rng"] }
chrono = "0.4"
[patch.crates-io]
openidconnect = { git = "https://github.com/ethaxon/openidconnect-rs.git", branch = "set_option" }