-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
46 lines (42 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
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "oid4vci"
version = "0.1.0"
authors = ["Spruce Systems, Inc."]
edition = "2021"
license = "Apache-2.0 OR MIT"
description = "OpenID for Verifiable Credentials Issuance"
repository = "https://github.com/spruceid/oidc4vci-rs/"
[features]
reqwest = ["oauth2/reqwest"]
[dependencies]
# TODO feature-gate
isomdl = { git = "https://github.com/spruceid/isomdl", rev = "90ce218" }
ssi-claims = "0.1.1"
ssi-dids-core = "0.1.1"
ssi-jwk = "0.3.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.3.0"
serde_path_to_error = "0.1.14"
url = { version = "2.3.1", features = ["serde"] }
oauth2 = { version = "5.0.0-alpha.4", features = [
"timing-resistant-secret-traits",
] }
async-signature = "0.3.0"
rand = "0.8.5"
time = { version = "0.3.29", features = ["serde"] }
thiserror = "1.0.49"
tracing = "0.1"
base64 = "0.21.4"
serde_urlencoded = "0.7.1"
anyhow = "1.0.86"
sha2 = "0.10.8"
form_urlencoded = "1.2.1"
percent-encoding = "2.3.1"
[dev-dependencies]
assert-json-diff = "2.0.2"
did-jwk = "0.2.1"
did-method-key = "0.3.1"
ssi-verification-methods = "0.1.2"
tokio = { version = "1.25.0", features = ["macros"] }
oid4vci = { path = ".", features = ["reqwest"] }