-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (41 loc) · 1.15 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
[package]
name = "did_manager"
version = "0.1.0"
edition = "2021"
description = "Resolve, create and sign DIDs for various methods"
homepage = "https://www.impierce.com/"
license = "Apache-2.0"
repository = "https://github.com/impierce/did-manager"
[workspace]
resolver = "2"
members = [
"consumer",
"did_iota",
"did_jwk",
"did_key",
"did_web",
"identity_stronghold_ext",
"producer",
"shared",
]
[dependencies]
consumer = { path = "consumer" }
producer = { path = "producer" }
[workspace.package]
homepage = "https://www.impierce.com/"
license = "Apache-2.0"
repository = "https://github.com/impierce/did-manager"
rust-version = "1.75"
[workspace.dependencies]
identity_iota = { version = "1.3", default-features = false, features = ["resolver", "iota-client"] }
identity_storage = { version = "1.3", default-features = false }
identity_stronghold = { version = "1.3", features = ["send-sync-storage"] }
iota-sdk = { version = "1.1", features = ["stronghold"] }
iota_stronghold = { version = "2.1" }
log = "0.4"
rand = "0.8"
serde_json = "1.0"
signature = "2.2"
test-log = "0.2"
thiserror = "1.0"
tokio = { version = "1", features = ["full"] }