-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
45 lines (33 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
[profile.dev]
opt-level = "z"
[profile.release]
opt-level = "z"
[workspace]
members = [
"dnas/requests_and_offers/utils",
"dnas/*/zomes/coordinator/*",
"dnas/*/zomes/integrity/*",
]
resolver = "2"
[workspace.dependencies]
hdi = "=0.5"
hdk = "=0.4"
thiserror = "1.0"
serde = "1.0"
chrono = "0.3" # 0.4 compatibility error with wasm_bindgen
[workspace.dependencies.utils]
path = "dnas/requests_and_offers/utils"
[workspace.dependencies.misc]
path = "dnas/requests_and_offers/zomes/coordinator/misc"
[workspace.dependencies.administration]
path = "dnas/requests_and_offers/zomes/coordinator/administration"
[workspace.dependencies.administration_integrity]
path = "dnas/requests_and_offers/zomes/integrity/administration"
[workspace.dependencies.users_organizations]
path = "dnas/requests_and_offers/zomes/coordinator/users_organizations"
[workspace.dependencies.users_organizations_integrity]
path = "dnas/requests_and_offers/zomes/integrity/users_organizations"
[workspace.dependencies.requests]
path = "dnas/requests_and_offers/zomes/coordinator/requests"
[workspace.dependencies.requests_integrity]
path = "dnas/requests_and_offers/zomes/integrity/requests"