@@ -18,44 +18,34 @@ iroha_core = { version = "=2.0.0-pre-rc.21 ", path = "core" }
18
18
19
19
irohad = { version = " =2.0.0-pre-rc.21" , path = " cli" }
20
20
iroha_torii = { version = " =2.0.0-pre-rc.21" , path = " torii" }
21
- iroha_torii_derive = { version = " =2.0.0-pre-rc.21" , path = " torii/derive" }
22
21
iroha_torii_const = { version = " =2.0.0-pre-rc.21" , path = " torii/const" }
23
22
24
23
iroha = { version = " =2.0.0-pre-rc.21" , path = " client" }
25
24
26
25
iroha_macro_utils = { version = " =2.0.0-pre-rc.21" , path = " macro/utils" }
27
26
iroha_telemetry = { version = " =2.0.0-pre-rc.21" , path = " telemetry" }
28
- iroha_telemetry_derive = { version = " =2.0.0-pre-rc.21" , path = " telemetry/derive" }
29
27
iroha_p2p = { version = " =2.0.0-pre-rc.21" , path = " p2p" }
30
28
iroha_primitives = { version = " =2.0.0-pre-rc.21" , path = " primitives" , default-features = false }
31
- iroha_primitives_derive = { version = " =2.0.0-pre-rc.21" , path = " primitives/derive" }
32
29
iroha_data_model = { version = " =2.0.0-pre-rc.21" , path = " data_model" , default-features = false }
33
- iroha_data_model_derive = { version = " =2.0.0-pre-rc.21" , path = " data_model/derive" }
34
30
iroha_config = { version = " =2.0.0-pre-rc.21" , path = " config" }
35
31
iroha_config_base = { version = " =2.0.0-pre-rc.21" , path = " config/base" }
36
- iroha_config_base_derive = { version = " =2.0.0-pre-rc.21" , path = " config/base/derive" }
37
32
iroha_schema_gen = { version = " =2.0.0-pre-rc.21" , path = " schema/gen" }
38
33
iroha_schema = { version = " =2.0.0-pre-rc.21" , path = " schema" , default-features = false }
39
- iroha_schema_derive = { version = " =2.0.0-pre-rc.21" , path = " schema/derive" }
40
34
iroha_logger = { version = " =2.0.0-pre-rc.21" , path = " logger" }
41
35
iroha_crypto = { version = " =2.0.0-pre-rc.21" , path = " crypto" , default-features = false }
42
36
iroha_macro = { version = " =2.0.0-pre-rc.21" , path = " macro" , default-features = false }
43
- iroha_derive = { version = " =2.0.0-pre-rc.21" , path = " macro/derive" }
44
37
iroha_futures = { version = " =2.0.0-pre-rc.21" , path = " futures" }
45
- iroha_futures_derive = { version = " =2.0.0-pre-rc.21" , path = " futures/derive" }
46
38
iroha_genesis = { version = " =2.0.0-pre-rc.21" , path = " genesis" }
47
39
iroha_ffi = { version = " =2.0.0-pre-rc.21" , path = " ffi" }
48
- iroha_ffi_derive = { version = " =2.0.0-pre-rc.21" , path = " ffi/derive" }
49
40
iroha_version = { version = " =2.0.0-pre-rc.21" , path = " version" , default-features = false }
50
- iroha_version_derive = { version = " =2.0.0-pre-rc.21" , path = " version/derive" , default-features = false }
51
41
iroha_wasm_codec = { version = " =2.0.0-pre-rc.21" , path = " wasm_codec" }
52
42
iroha_wasm_builder = { version = " =2.0.0-pre-rc.21" , path = " wasm_builder" }
53
43
54
44
iroha_smart_contract = { version = " =2.0.0-pre-rc.21" , path = " smart_contract" }
55
- iroha_smart_contract_derive = { version = " =2.0.0-pre-rc.21" , path = " smart_contract/derive" }
56
45
iroha_smart_contract_utils = { version = " =2.0.0-pre-rc.21" , path = " smart_contract/utils" }
57
- iroha_executor_derive = { version = " =2.0.0-pre-rc.21" , path = " smart_contract/executor/derive" }
58
- iroha_trigger_derive = { version = " =2.0.0-pre-rc.21" , path = " smart_contract/trigger/derive" }
46
+
47
+ iroha_executor = { version = " =2.0.0-pre-rc.21" , path = " smart_contract/executor" }
48
+ iroha_executor_data_model = { version = " =2.0.0-pre-rc.21" , path = " smart_contract/executor/data_model" }
59
49
60
50
test_network = { version = " =2.0.0-pre-rc.21" , path = " core/test_network" }
61
51
test_samples = { version = " =2.0.0-pre-rc.21" , path = " test_samples" }
@@ -213,41 +203,53 @@ members = [
213
203
" crypto" ,
214
204
" data_model" ,
215
205
" genesis" ,
206
+
207
+ " logger" ,
208
+ " p2p" ,
209
+
210
+ " futures" ,
211
+ " futures/derive" ,
212
+
216
213
" primitives" ,
217
214
" primitives/derive" ,
218
215
" primitives/numeric" ,
216
+
219
217
" ffi" ,
220
218
" ffi/derive" ,
221
- " futures" ,
222
- " futures/derive" ,
223
- " logger" ,
224
- " macro" ,
225
- " macro/derive" ,
226
- " macro/utils" ,
227
- " p2p" ,
219
+
228
220
" schema" ,
229
- " schema/derive" ,
230
221
" schema/gen" ,
222
+ " schema/derive" ,
223
+
231
224
" smart_contract" ,
232
225
" smart_contract/derive" ,
226
+ " smart_contract/utils" ,
227
+
233
228
" smart_contract/trigger" ,
234
229
" smart_contract/trigger/derive" ,
235
- " smart_contract/utils " ,
230
+
236
231
" smart_contract/executor" ,
237
232
" smart_contract/executor/derive" ,
233
+ " smart_contract/executor/data_model" ,
234
+ " smart_contract/executor/data_model/derive" ,
235
+
238
236
" telemetry" ,
239
237
" test_samples" ,
238
+
239
+ " tools/swarm" ,
240
240
" tools/kagami" ,
241
241
" tools/kura_inspector" ,
242
242
" tools/parity_scale_cli" ,
243
- " tools/swarm" ,
244
243
" tools/wasm_builder_cli" ,
245
244
" tools/wasm_test_runner" ,
245
+
246
246
" torii" ,
247
247
" torii/derive" ,
248
248
" torii/const" ,
249
+
249
250
" version" ,
250
251
" version/derive" ,
252
+
251
253
" wasm_codec" ,
252
254
" wasm_codec/derive" ,
253
255
" wasm_builder" ,
0 commit comments