-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathCargo.toml
103 lines (84 loc) · 2.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[package]
name = "examples"
version = "1.4.0"
authors = ["IOTA Stiftung"]
edition = "2021"
publish = false
[dependencies]
anyhow = "1.0.62"
identity_eddsa_verifier = { path = "../identity_eddsa_verifier", default-features = false, features = ["ed25519"] }
identity_storage = { path = "../identity_storage" }
identity_stronghold = { path = "../identity_stronghold", default-features = false, features = ["send-sync-storage"] }
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9" }
iota-sdk-legacy = { package = "iota-sdk", version = "1.0", default-features = false, features = ["tls", "client", "stronghold"] }
json-proof-token.workspace = true
rand = "0.8.5"
sd-jwt-payload = { version = "0.2.1", default-features = false, features = ["sha"] }
secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", tag = "v0.1.0" }
serde_json = { version = "1.0", default-features = false }
tokio = { version = "1.29", default-features = false, features = ["rt"] }
[dependencies.identity_iota]
path = "../identity_iota"
default-features = false
features = [
"client",
"domain-linkage",
"iota-client",
"jpt-bbs-plus",
"kinesis-client",
"memstore",
"resolver",
"revocation-bitmap",
"sd-jwt",
"status-list-2021",
]
[lib]
path = "utils/utils.rs"
[[example]]
path = "0_basic/0_create_did.rs"
name = "0_create_did"
[[example]]
path = "0_basic/1_update_did.rs"
name = "1_update_did"
[[example]]
path = "0_basic/2_resolve_did.rs"
name = "2_resolve_did"
[[example]]
path = "0_basic/3_deactivate_did.rs"
name = "3_deactivate_did"
[[example]]
path = "0_basic/5_create_vc.rs"
name = "5_create_vc"
[[example]]
path = "0_basic/6_create_vp.rs"
name = "6_create_vp"
[[example]]
path = "0_basic/7_revoke_vc.rs"
name = "7_revoke_vc"
[[example]]
path = "0_basic/8_stronghold.rs"
name = "8_stronghold"
[[example]]
path = "1_advanced/4_alias_output_history.rs"
name = "4_alias_output_history"
[[example]]
path = "1_advanced/5_custom_resolution.rs"
name = "5_custom_resolution"
[[example]]
path = "1_advanced/6_domain_linkage.rs"
name = "6_domain_linkage"
[[example]]
path = "1_advanced/7_sd_jwt.rs"
name = "7_sd_jwt"
[[example]]
path = "1_advanced/8_status_list_2021.rs"
name = "8_status_list_2021"
[[example]]
path = "1_advanced/9_zkp.rs"
name = "9_zkp"
[[example]]
path = "1_advanced/10_zkp_revocation.rs"
name = "10_zkp_revocation"
[[example]]
path = "1_advanced/11_linked_verifiable_presentation.rs"
name = "11_linked_verifiable_presentation"