-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (32 loc) · 1.18 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
[package]
name = "openid4vc-wallet"
version = "0.1.0"
authors = ["Spruce Systems, Inc."]
edition = "2021"
license = "Apache-2.0 OR MIT"
description = "CLI tool for testing OID4VC protocol implementations"
repository = "https://github.com/spruceid/oid4vc_cli_wallet"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
base64 = "0.21.2"
clap = { version = "4.3.21", features = ["derive"] }
isomdl180137 = { git = "https://github.com/spruceid/isomdl-18013-7", rev = "a631543" }
josekit = { git = "https://github.com/cobward/josekit-rs", rev = "635c8a7" }
oidc4vp = { git = "https://github.com/spruceid/oidc4vp-rs.git", rev = "22ddab2" }
oid4vci = { git = "https://github.com/spruceid/oid4vci-rs.git", rev = "612ea3b" }
inquire = "0.6.2"
open = "5.0.0"
p256 = { version = "0.13.2", features = ["jwk"] }
rand = "0.8.5"
reqwest = { version = "0.11.20", features = ["native-tls"] }
serde = "1.0.183"
serde_json = "1.0.105"
didkit = "0.6.0"
time = "0.3.25"
tokio = { version = "1.32.0", features = ["macros", "rt", "fs", "io-util"] }
url = "2.4.0"
x509-cert = "0.2.4"
sec1 = "0.7.3"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"