-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
160 lines (144 loc) · 4.79 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
[workspace]
resolver = "2"
members = [
"framework/core",
"framework/instruments",
"framework/instruments_derive",
"framework/runner",
"framework/summary_model",
"bindings/client",
"bindings/runner",
"bindings/trycp_client",
"bindings/trycp_runner",
"summariser",
"happ_builder",
"scenarios/app_install",
"scenarios/dht_sync_lag",
"scenarios/single_write_many_read",
"scenarios/zome_call_single_value",
"scenarios/first_call",
"scenarios/write_read",
"scenarios/write_query",
"scenarios/local_signals",
"scenarios/remote_call_rate",
"scenarios/remote_signals",
"scenarios/two_party_countersigning",
"scenarios/write_validated",
"scenarios/trycp_write_validated",
"scenarios/validation_receipts",
"zomes/return_single_value/coordinator",
"zomes/crud/coordinator",
"zomes/crud/integrity",
"zomes/timed/coordinator",
"zomes/timed/integrity",
"zomes/callback/coordinator",
"zomes/callback/integrity",
"zomes/large/coordinator",
"zomes/signal/coordinator",
"zomes/remote_call/coordinator",
"zomes/remote_call/integrity",
"zomes/remote_signal/coordinator",
"zomes/remote_signal/integrity",
"zomes/countersigning/coordinator",
"zomes/countersigning/integrity",
"zomes/validated/coordinator",
"zomes/validated/integrity",
]
# By default, don't build the scenarios or zomes.
# The scenarios should only be built when they are being run.
# The zomes should only be built into wasm as part of running scenarios.
default-members = [
"framework/core",
"framework/instruments",
"framework/instruments_derive",
"framework/runner",
"bindings/client",
"bindings/runner",
"bindings/trycp_client",
"bindings/trycp_runner",
"summariser",
"happ_builder",
]
[workspace.dependencies]
anyhow = "1.0.80"
clap = { version = "4.5.1", features = ["derive"] }
tokio = { version = "1.36.0", features = ["full"] }
parking_lot = "0.12.1"
log = "0.4.20"
env_logger = "0.11.2"
derive_more = { version = "1", features = ["error", "display", "debug"] }
opentelemetry_api = { version = "0.20.0", features = ["metrics"] }
toml = "0.8.10"
serde = "1"
serde_yaml = "0.9"
serde_json = "1"
walkdir = "2"
sysinfo = "0.33"
url = "2.5.0"
tabled = "0.17"
indicatif = "0.17.8"
# TODO waiting for 0.7.3+ relase to use the new reqwest-client-native-tls-vendored feature
influxdb = { version = "0.7.3-beta.1", package = "ts_influxdb", features = [
"reqwest-client-native-tls-vendored",
] }
influxive-core = "0.0.2-alpha.1"
nanoid = "0.4.0"
which = "7.0"
tokio-tungstenite = "0.21"
rmp-serde = "1"
rand = "0.8"
ed25519-dalek = "2.1"
itertools = "0.14"
chrono = "0.4"
sha3 = "0.10"
polars = { version = "0.43", features = [
"lazy",
"json",
"strings",
"dynamic_group_by",
"round_series",
] }
tempfile = "3.13"
futures = "0.3"
thiserror = "2"
pretty_assertions = "1.4"
# Deps for Holochain
holochain_client = { version = "=0.6.0" }
trycp_client = { version = "0.17.0" }
trycp_api = { version = "0.17.0" }
holochain_zome_types = { version = "0.4.0" }
holo_hash = { version = "0.4.0" }
holochain_types = { version = "0.4.0" }
holochain_conductor_api = { version = "0.4.0" }
holochain_nonce = { version = "0.4.0" }
kitsune_p2p_types = { version = "0.4.0" }
holochain_websocket = { version = "0.4.0" }
hdk = { version = "0.4.0", features = [
"unstable-functions",
"unstable-countersigning",
] }
hdi = { version = "0.5.0", features = ["unstable-functions"] }
holochain_serialized_bytes = "0.0.55"
# Framework
wind_tunnel_core = { path = "./framework/core", version = "0.4.0-alpha.1" }
wind_tunnel_instruments = { path = "./framework/instruments", version = "0.4.0-alpha.1" }
wind_tunnel_instruments_derive = { path = "./framework/instruments_derive", version = "0.4.0-alpha.1" }
wind_tunnel_runner = { path = "./framework/runner", version = "0.4.0-alpha.1" }
wind_tunnel_summary_model = { path = "./framework/summary_model", version = "0.4.0-alpha.1" }
# Bindings
holochain_client_instrumented = { path = "./bindings/client", version = "0.4.0-alpha.1" }
holochain_wind_tunnel_runner = { path = "./bindings/runner", version = "0.4.0-alpha.1" }
trycp_client_instrumented = { path = "./bindings/trycp_client", version = "0.4.0-alpha.1" }
trycp_wind_tunnel_runner = { path = "./bindings/trycp_runner", version = "0.4.0-alpha.1" }
# hApp Builder
happ_builder = { path = "./happ_builder", version = "0.1.0" }
# Zomes for coorindator dependencies
crud_integrity = { path = "./zomes/crud/integrity" }
timed_integrity = { path = "./zomes/timed/integrity" }
callback_integrity = { path = "./zomes/callback/integrity" }
remote_call_integrity = { path = "./zomes/remote_call/integrity" }
remote_signal_integrity = { path = "./zomes/remote_signal/integrity" }
countersigning_integrity = { path = "./zomes/countersigning/integrity" }
validated_integrity = { path = "./zomes/validated/integrity" }
[workspace.lints.rust]
unsafe_code = "forbid"