-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
41 lines (38 loc) · 986 Bytes
/
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
[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" }
tokio.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_with.workspace = true
getset.workspace = true
anyhow = "1.0"
async-trait = "0.1"
did_url = "0.1"
chrono = "0.4"
serde_urlencoded = "0.7"
did-key = "0.2"
identity_iota = "0.6"
identity_core = { git = "https://git@github.com/iotaledger/identity.rs", rev = "4f27434" }
identity_credential.workspace = true
futures = "0.3"
axum = "0.6"
axum-auth = "0.4"
reqwest.workspace = true
jsonwebtoken = "8.3"
paste = "1.0"
tower-http = { version = "0.4", features = ["cors"]}
[dev-dependencies]
ed25519-dalek = "1.0.1"
rand = "0.7"
lazy_static = "1.4.0"
derivative = "2.2.0"
wiremock = "0.5.18"
jwt = "0.16"