-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 904 Bytes
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 904 Bytes
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
[profile.dev]
opt-level = "z"
[profile.release]
opt-level = "z"
[workspace]
members = [
"dnas/*/zomes/coordinator/*",
"dnas/*/zomes/integrity/*",
"types/*"
]
exclude = ["checked_cli"]
resolver = "2"
[workspace.dependencies]
hdi = "=0.6.2"
hdk = "=0.5.2"
holochain_zome_types = "0.5.2"
holo_hash = "0.5.2"
serde = "1.0"
chrono = { version = "0.4.34", default-features = false, features = ["clock", "std"] }
hex = "0.4.3"
regex = "1.10.3"
nanoid = "0.4.0"
anyhow = "1.0.81"
minisign-verify = "0.2.1"
url = "2.5.0"
rand = { version = "0.8.5", default-features = false, features = ["std", "std_rng"] }
signing_keys_types = { path = "types/signing_keys" }
signing_keys_integrity = { path = "dnas/checked/zomes/integrity/signing_keys" }
fetch_types = { path = "types/fetch" }
checked_types = { path = "types/checked_types" }
fetch_integrity = { path = "dnas/checked/zomes/integrity/fetch" }