-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
65 lines (54 loc) · 1.57 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[workspace]
members = [
"zomes/coordinator/holons",
"zomes/coordinator/descriptors",
"zomes/coordinator/core_schema",
"zomes/coordinator/dances",
"zomes/integrity/holons_integrity",
"crates/shared_types/holon",
"crates/shared_validation",
"crates/type_system/base_types",
"crates/type_system/core_types",
"crates/type_system/descriptor_types",
"crates/type_system/core_descriptor_types",
"crates/type_system/type_names",
]
resolver = "2"
# Local workspace dependencies
[workspace.dependencies.holons]
path = "zomes/coordinator/holons"
[workspace.dependencies.dances]
path = "zomes/coordinator/dances"
[workspace.dependencies.descriptors]
path = "zomes/coordinator/descriptors"
[workspace.dependencies.core_schema]
path = "zomes/coordinator/core_schema"
[workspace.dependencies.holons_integrity]
path = "zomes/integrity/holons_integrity"
[workspace.dependencies.shared_types_holon]
path = "crates/shared_types/holon"
[workspace.dependencies.shared_validation]
path = "crates/shared_validation"
# External dependencies
[workspace.dependencies]
ahash = "=0.8.11"
derive-new = "0.6"
hdi = "0.4"
hdk = "0.3"
holochain_integrity_types = "0.3"
Inflector = "0.11"
quick_cache = "0.6"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.109"
strum = "0.26"
strum_macros = "0.26"
thiserror = "1"
async-std = "1.1.12"
futures = { version = "0.3.1", default-features = false }
pretty_assertions = "1.4.0"
rstest = "0.21"
home = "0.5.9" # unpin this when we move to rust 1.81.0 or later
[profile.dev]
opt-level = "z"
[profile.release]
opt-level = "z"