-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
44 lines (40 loc) · 1.08 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
[package]
name = "oid4vc-manager"
version = "0.1.0"
edition = "2021"
[dependencies]
# Fix these dependencies once the crates arre automatically published to crates.io.
oid4vc-core = { path = "../oid4vc-core" }
siopv2 = { path = "../siopv2" }
oid4vp = { path = "../oid4vp" }
oid4vci = { path = "../oid4vci" }
anyhow = "1.0"
async-trait = "0.1"
axum = "0.6"
axum-auth = "0.4"
chrono = "0.4"
did-key = "0.2"
did_url = "0.1"
futures = "0.3"
getset.workspace = true
identity_core.workspace = true
identity_credential.workspace = true
jsonwebtoken.workspace = true
paste = "1.0"
reqwest.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_urlencoded.workspace = true
serde_with.workspace = true
tokio.workspace = true
tower-http = { version = "0.4", features = ["cors"]}
url.workspace = true
[dev-dependencies]
oid4vc-core = { path = "../oid4vc-core", features = ["test-utils"] }
derivative = "2.2"
ed25519-dalek = { version = "2.0.0", features = ["rand_core"] }
lazy_static = "1.4"
rand = "0.8"
rstest = "0.18"
uuid = { version = "1.4", features = ["v4", "fast-rng"] }
wiremock = "0.5"