-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 832 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 832 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
[package]
name = "cli-vc-wallet"
version = "0.2.2"
edition = "2021"
default-run = "cli-vc-wallet"
[dependencies]
anyhow = "1.0.97"
axum = "0.8.1"
base64 = "0.22.1"
clap = { version = "4.5.36", features = ["derive"] }
clap-stdin = "0.6.0"
console = "0.15.11"
dialoguer = "0.11.0"
env_logger = "0.11.7"
jsonwebkey = { "features" = ["generate", "jwt-convert"], version = "0.3.5" }
jsonwebtoken = { "features" = ["use_pem"], version = "8.3.0" }
openidconnect = { features = ["reqwest", "accept-rfc3339-timestamps"], version = "4.0.0" }
reqwest = "0.12.12"
reqwest-tracing = "0.5.8"
serde = { features = ["derive"], version = "1.0.218" }
serde_json = "1.0.140"
serde_qs = "0.13.0"
tokio = { features = ["full"], version = "1.44.2" }
url = { features = ["serde"], version = "2.5.4" }
[[bin]]
name = "cli-vc-wallet"
path = "src/main.rs"