-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (31 loc) · 1.03 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
[profile.dev]
opt-level = "z"
[profile.release]
opt-level = "z"
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.dependencies]
hdi = "=0.5.0-dev.12"
hdk = "=0.4.0-dev.14"
holo_hash = { version = "=0.4.0-dev.11", features = ["encoding"] }
serde = "1"
serde_json = "1"
bincode = "1.3.3"
alloy-primitives = { version = "0.6.3", features = ["serde", "k256"] }
ed25519-dalek = { version = "2.1.1", features = ["serde"] }
bs58 = "0.5.0"
[workspace.dependencies.holoom_types]
path = "crates/holoom_types"
[workspace.dependencies.jaq_wrapper]
path = "crates/jaq_wrapper"
[workspace.dependencies.username_registry_utils]
path = "crates/username_registry_utils"
[workspace.dependencies.username_registry_validation]
path = "crates/username_registry_validation"
[workspace.dependencies.username_registry_integrity]
path = "crates/username_registry_integrity"
[workspace.dependencies.username_registry_coordinator]
path = "crates/username_registry_coordinator"
[workspace.dependencies.signer_coordinator]
path = "crates/signer_coordinator"