-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (35 loc) · 1.31 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
[profile.dev]
opt-level = "z"
[profile.release]
opt-level = "z"
[workspace]
resolver ="2"
members = [
"crates/coordinator-zomes/apis/holon_coord_api",
"crates/coordinator-zomes/apis/type_desc_coord_api",
"crates/coordinator-zomes/impls/holon_coord_impl",
"crates/coordinator-zomes/impls/type_desc_coord_impl",
"crates/coordinator-zomes/externs",
"crates/integrity-zomes/holon_integ",
"crates/integrity-zomes/type_desc_integ",
"crates/libs/types/descriptors"
]
[workspace.dependencies]
hdi = "0.2.1"
hdk = "0.1.1"
serde = "1"
derive-new = "0.5"
[workspace.dependencies.hc_zome_coordinator_holon_api]
path = "crates/coordinator-zomes/apis/holon_coord_api"
[workspace.dependencies.hc_zome_coordinator_type_desc_api]
path = "crates/coordinator-zomes/apis/type_desc_coord_api"
[workspace.dependencies.hc_zome_coordinator_holon_impl]
path = "crates/coordinator-zomes/impls/holon_coord_impl"
[workspace.dependencies.hc_zome_coordinator_type_desc_impl]
path = "crates/coordinator-zomes/impls/type_desc_coord_impl"
[workspace.dependencies.hc_zome_coordinator_externs]
path = "crates/coordinator-zomes/externs"
[workspace.dependencies.hc_zome_integrity_holon]
path = "crates/integrity-zomes/holon_integ"
[workspace.dependencies.hc_zome_integrity_type_desc]
path = "crates/integrity-zomes/type_desc_integ"