-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (43 loc) · 1.65 KB
/
Cargo.toml
File metadata and controls
46 lines (43 loc) · 1.65 KB
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
[profile.dev]
opt-level = "z"
[profile.release]
opt-level = "z"
[workspace]
members = [
"dnas/*/zomes/coordinator/*",
"dnas/*/zomes/integrity/*",
"dnas/nondominium/zomes/coordinator/zome_person",
"dnas/nondominium/zomes/integrity/zome_person",
"dnas/nondominium/zomes/coordinator/zome_resource",
"dnas/nondominium/zomes/integrity/zome_resource",
"dnas/nondominium/zomes/coordinator/zome_gouvernance",
"dnas/nondominium/zomes/integrity/zome_gouvernance",
"crates/utils",
"dnas/nondominium/tests",
]
# default-members excludes the Sweettest crate so that
# `cargo build --target wasm32-unknown-unknown` only compiles WASM zomes.
# nondominium_sweettest has native-only deps (holochain, tokio, mio) that
# cannot compile to WASM.
# NOTE: Globs in `members` above do not carry through to `default-members`.
# New zomes added via the glob must be listed here explicitly as well.
default-members = [
"dnas/nondominium/zomes/coordinator/zome_person",
"dnas/nondominium/zomes/integrity/zome_person",
"dnas/nondominium/zomes/coordinator/zome_resource",
"dnas/nondominium/zomes/integrity/zome_resource",
"dnas/nondominium/zomes/coordinator/zome_gouvernance",
"dnas/nondominium/zomes/integrity/zome_gouvernance",
"dnas/nondominium/zomes/coordinator/misc",
"crates/utils",
]
resolver = "2"
[workspace.dependencies]
hdi = "^0.7.0"
hdk = "^0.6.0"
holochain_serialized_bytes = "*"
serde = "1.0"
thiserror = "2.0"
# Test-only deps (NOT compiled to WASM — only used by nondominium_sweettest)
holochain = { version = "=0.6.0", features = ["test_utils"] }
tokio = { version = "1", features = ["rt-multi-thread", "time", "macros"] }