-
Notifications
You must be signed in to change notification settings - Fork 1
/
main_tree_withou_ui.txt
2339 lines (2335 loc) · 146 KB
/
main_tree_withou_ui.txt
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
descriptors v0.1.0 (/Users/stevemelville/dev/map-proto/map-dev/map-holons/crates/coordinator/descriptors)
├── derive-new v0.5.9 (proc-macro)
│ ├── proc-macro2 v1.0.78
│ │ └── unicode-ident v1.0.12
│ ├── quote v1.0.35
│ │ └── proc-macro2 v1.0.78 (*)
│ └── syn v1.0.109
│ ├── proc-macro2 v1.0.78 (*)
│ ├── quote v1.0.35 (*)
│ └── unicode-ident v1.0.12
├── hdi v0.2.6
│ ├── hdk_derive v0.1.6 (proc-macro)
│ │ ├── darling v0.14.4
│ │ │ ├── darling_core v0.14.4
│ │ │ │ ├── fnv v1.0.7
│ │ │ │ ├── ident_case v1.0.1
│ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ ├── strsim v0.10.0
│ │ │ │ └── syn v1.0.109 (*)
│ │ │ └── darling_macro v0.14.4 (proc-macro)
│ │ │ ├── darling_core v0.14.4 (*)
│ │ │ ├── quote v1.0.35 (*)
│ │ │ └── syn v1.0.109 (*)
│ │ ├── heck v0.4.1
│ │ ├── holochain_integrity_types v0.1.6
│ │ │ ├── arbitrary v1.3.2
│ │ │ │ └── derive_arbitrary v1.3.2 (proc-macro)
│ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ └── syn v2.0.48
│ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ └── unicode-ident v1.0.12
│ │ │ ├── holo_hash v0.1.6
│ │ │ │ ├── arbitrary v1.3.2 (*)
│ │ │ │ ├── base64 v0.13.1
│ │ │ │ ├── blake2b_simd v0.5.11
│ │ │ │ │ ├── arrayref v0.3.7
│ │ │ │ │ ├── arrayvec v0.5.2
│ │ │ │ │ └── constant_time_eq v0.1.5
│ │ │ │ ├── derive_more v0.99.17 (proc-macro)
│ │ │ │ │ ├── convert_case v0.4.0
│ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ └── rustc_version v0.4.0
│ │ │ │ │ └── semver v1.0.20
│ │ │ │ │ └── serde v1.0.166
│ │ │ │ │ └── serde_derive v1.0.166 (proc-macro)
│ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ └── syn v2.0.48 (*)
│ │ │ │ ├── fixt v0.1.5
│ │ │ │ │ ├── holochain_serialized_bytes v0.0.51
│ │ │ │ │ │ ├── arbitrary v1.3.2 (*)
│ │ │ │ │ │ ├── holochain_serialized_bytes_derive v0.0.51 (proc-macro)
│ │ │ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ │ │ ├── rmp-serde v0.15.5
│ │ │ │ │ │ │ ├── byteorder v1.5.0
│ │ │ │ │ │ │ ├── rmp v0.8.12
│ │ │ │ │ │ │ │ ├── byteorder v1.5.0
│ │ │ │ │ │ │ │ ├── num-traits v0.2.18
│ │ │ │ │ │ │ │ │ └── libm v0.2.8
│ │ │ │ │ │ │ │ │ [build-dependencies]
│ │ │ │ │ │ │ │ │ └── autocfg v1.1.0
│ │ │ │ │ │ │ │ └── paste v1.0.5 (proc-macro)
│ │ │ │ │ │ │ └── serde v1.0.166 (*)
│ │ │ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ │ │ ├── serde-transcode v1.1.1
│ │ │ │ │ │ │ └── serde v1.0.166 (*)
│ │ │ │ │ │ ├── serde_bytes v0.11.14
│ │ │ │ │ │ │ └── serde v1.0.166 (*)
│ │ │ │ │ │ ├── serde_json v1.0.109
│ │ │ │ │ │ │ ├── indexmap v2.2.3
│ │ │ │ │ │ │ │ ├── equivalent v1.0.1
│ │ │ │ │ │ │ │ └── hashbrown v0.14.3
│ │ │ │ │ │ │ ├── itoa v1.0.10
│ │ │ │ │ │ │ ├── ryu v1.0.16
│ │ │ │ │ │ │ └── serde v1.0.166 (*)
│ │ │ │ │ │ └── thiserror v1.0.57
│ │ │ │ │ │ └── thiserror-impl v1.0.57 (proc-macro)
│ │ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ │ └── syn v2.0.48 (*)
│ │ │ │ │ ├── lazy_static v1.4.0
│ │ │ │ │ ├── parking_lot v0.10.2
│ │ │ │ │ │ ├── lock_api v0.3.4
│ │ │ │ │ │ │ └── scopeguard v1.2.0
│ │ │ │ │ │ └── parking_lot_core v0.7.3
│ │ │ │ │ │ ├── cfg-if v0.1.10
│ │ │ │ │ │ ├── libc v0.2.153
│ │ │ │ │ │ └── smallvec v1.13.1
│ │ │ │ │ ├── paste v1.0.5 (proc-macro)
│ │ │ │ │ ├── rand v0.8.5
│ │ │ │ │ │ ├── libc v0.2.153
│ │ │ │ │ │ ├── rand_chacha v0.3.1
│ │ │ │ │ │ │ ├── ppv-lite86 v0.2.17
│ │ │ │ │ │ │ └── rand_core v0.6.4
│ │ │ │ │ │ │ └── getrandom v0.2.12
│ │ │ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ │ │ └── libc v0.2.153
│ │ │ │ │ │ └── rand_core v0.6.4 (*)
│ │ │ │ │ ├── rand_core v0.6.4 (*)
│ │ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ │ ├── strum v0.18.0
│ │ │ │ │ └── strum_macros v0.18.0 (proc-macro)
│ │ │ │ │ ├── heck v0.3.3
│ │ │ │ │ │ └── unicode-segmentation v1.11.0
│ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ ├── futures v0.3.30
│ │ │ │ │ ├── futures-channel v0.3.30
│ │ │ │ │ │ ├── futures-core v0.3.30
│ │ │ │ │ │ └── futures-sink v0.3.30
│ │ │ │ │ ├── futures-core v0.3.30
│ │ │ │ │ ├── futures-executor v0.3.30
│ │ │ │ │ │ ├── futures-core v0.3.30
│ │ │ │ │ │ ├── futures-task v0.3.30
│ │ │ │ │ │ └── futures-util v0.3.30
│ │ │ │ │ │ ├── futures-channel v0.3.30 (*)
│ │ │ │ │ │ ├── futures-core v0.3.30
│ │ │ │ │ │ ├── futures-io v0.3.30
│ │ │ │ │ │ ├── futures-macro v0.3.30 (proc-macro)
│ │ │ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ │ │ └── syn v2.0.48 (*)
│ │ │ │ │ │ ├── futures-sink v0.3.30
│ │ │ │ │ │ ├── futures-task v0.3.30
│ │ │ │ │ │ ├── memchr v2.7.1
│ │ │ │ │ │ ├── pin-project-lite v0.2.13
│ │ │ │ │ │ ├── pin-utils v0.1.0
│ │ │ │ │ │ └── slab v0.4.9
│ │ │ │ │ │ [build-dependencies]
│ │ │ │ │ │ └── autocfg v1.1.0
│ │ │ │ │ ├── futures-io v0.3.30
│ │ │ │ │ ├── futures-sink v0.3.30
│ │ │ │ │ ├── futures-task v0.3.30
│ │ │ │ │ └── futures-util v0.3.30 (*)
│ │ │ │ ├── holochain_serialized_bytes v0.0.51 (*)
│ │ │ │ ├── kitsune_p2p_dht_arc v0.1.4
│ │ │ │ │ ├── derive_more v0.99.17 (proc-macro) (*)
│ │ │ │ │ ├── gcollections v1.5.0
│ │ │ │ │ │ ├── bit-set v0.5.3
│ │ │ │ │ │ │ └── bit-vec v0.6.3
│ │ │ │ │ │ ├── num-integer v0.1.46
│ │ │ │ │ │ │ └── num-traits v0.2.18 (*)
│ │ │ │ │ │ ├── num-traits v0.2.18 (*)
│ │ │ │ │ │ └── trilean v1.1.0
│ │ │ │ │ ├── intervallum v1.4.1
│ │ │ │ │ │ ├── bit-set v0.5.3 (*)
│ │ │ │ │ │ ├── gcollections v1.5.0 (*)
│ │ │ │ │ │ ├── num-integer v0.1.46 (*)
│ │ │ │ │ │ ├── num-traits v0.2.18 (*)
│ │ │ │ │ │ └── trilean v1.1.0
│ │ │ │ │ ├── num-traits v0.2.18 (*)
│ │ │ │ │ └── serde v1.0.166 (*)
│ │ │ │ ├── must_future v0.1.2
│ │ │ │ │ ├── futures v0.3.30 (*)
│ │ │ │ │ └── pin-utils v0.1.0
│ │ │ │ ├── rand v0.8.5 (*)
│ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ ├── serde_bytes v0.11.14 (*)
│ │ │ │ └── thiserror v1.0.57 (*)
│ │ │ ├── holochain_serialized_bytes v0.0.51 (*)
│ │ │ ├── kitsune_p2p_timestamp v0.1.4
│ │ │ │ ├── arbitrary v1.3.2 (*)
│ │ │ │ ├── chrono v0.4.34
│ │ │ │ │ ├── iana-time-zone v0.1.60
│ │ │ │ │ │ └── core-foundation-sys v0.8.6
│ │ │ │ │ ├── num-traits v0.2.18 (*)
│ │ │ │ │ └── serde v1.0.166 (*)
│ │ │ │ ├── derive_more v0.99.17 (proc-macro) (*)
│ │ │ │ └── serde v1.0.166 (*)
│ │ │ ├── paste v1.0.5 (proc-macro)
│ │ │ ├── serde v1.0.166 (*)
│ │ │ ├── serde_bytes v0.11.14 (*)
│ │ │ ├── subtle v2.5.0
│ │ │ └── tracing v0.1.40
│ │ │ ├── log v0.4.20
│ │ │ │ └── value-bag v1.7.0
│ │ │ ├── pin-project-lite v0.2.13
│ │ │ ├── tracing-attributes v0.1.27 (proc-macro)
│ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ └── syn v2.0.48 (*)
│ │ │ └── tracing-core v0.1.32
│ │ │ └── once_cell v1.19.0
│ │ ├── paste v1.0.5 (proc-macro)
│ │ ├── proc-macro-error v1.0.4
│ │ │ ├── proc-macro-error-attr v1.0.4 (proc-macro)
│ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ └── quote v1.0.35 (*)
│ │ │ │ [build-dependencies]
│ │ │ │ └── version_check v0.9.4
│ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ ├── quote v1.0.35 (*)
│ │ │ └── syn v1.0.109 (*)
│ │ │ [build-dependencies]
│ │ │ └── version_check v0.9.4
│ │ ├── proc-macro2 v1.0.78 (*)
│ │ ├── quote v1.0.35 (*)
│ │ └── syn v1.0.109 (*)
│ ├── holo_hash v0.1.6
│ │ ├── arbitrary v1.3.2 (*)
│ │ ├── base64 v0.13.1
│ │ ├── blake2b_simd v0.5.11 (*)
│ │ ├── derive_more v0.99.17 (proc-macro) (*)
│ │ ├── fixt v0.1.5 (*)
│ │ ├── futures v0.3.30 (*)
│ │ ├── holochain_serialized_bytes v0.0.51 (*)
│ │ ├── kitsune_p2p_dht_arc v0.1.4
│ │ │ ├── derive_more v0.99.17 (proc-macro) (*)
│ │ │ ├── gcollections v1.5.0 (*)
│ │ │ ├── intervallum v1.4.1 (*)
│ │ │ ├── num-traits v0.2.18 (*)
│ │ │ ├── rusqlite v0.29.0
│ │ │ │ ├── bitflags v2.4.2
│ │ │ │ ├── fallible-iterator v0.2.0
│ │ │ │ ├── fallible-streaming-iterator v0.1.9
│ │ │ │ ├── hashlink v0.8.4
│ │ │ │ │ └── hashbrown v0.14.3
│ │ │ │ │ ├── ahash v0.8.6
│ │ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ │ ├── once_cell v1.19.0
│ │ │ │ │ │ └── zerocopy v0.7.32
│ │ │ │ │ │ [build-dependencies]
│ │ │ │ │ │ └── version_check v0.9.4
│ │ │ │ │ └── allocator-api2 v0.2.16
│ │ │ │ ├── libsqlite3-sys v0.26.0
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ ├── cc v1.0.83
│ │ │ │ │ │ └── libc v0.2.153
│ │ │ │ │ ├── pkg-config v0.3.30
│ │ │ │ │ └── vcpkg v0.2.15
│ │ │ │ └── smallvec v1.13.1
│ │ │ └── serde v1.0.166 (*)
│ │ ├── must_future v0.1.2 (*)
│ │ ├── rand v0.8.5 (*)
│ │ ├── rusqlite v0.29.0 (*)
│ │ ├── serde v1.0.166 (*)
│ │ ├── serde_bytes v0.11.14 (*)
│ │ └── thiserror v1.0.57 (*)
│ ├── holochain_integrity_types v0.1.6 (*)
│ ├── holochain_wasmer_guest v0.0.83
│ │ ├── holochain_serialized_bytes v0.0.51 (*)
│ │ ├── holochain_wasmer_common v0.0.83
│ │ │ ├── holochain_serialized_bytes v0.0.51 (*)
│ │ │ ├── serde v1.0.166 (*)
│ │ │ ├── serde_bytes v0.11.14 (*)
│ │ │ ├── test-fuzz v3.0.4
│ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ ├── test-fuzz-internal v3.0.4
│ │ │ │ │ ├── cargo_metadata v0.15.4
│ │ │ │ │ │ ├── camino v1.1.6
│ │ │ │ │ │ │ └── serde v1.0.166 (*)
│ │ │ │ │ │ ├── cargo-platform v0.1.3
│ │ │ │ │ │ │ └── serde v1.0.166 (*)
│ │ │ │ │ │ ├── semver v1.0.20 (*)
│ │ │ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ │ │ ├── serde_json v1.0.109 (*)
│ │ │ │ │ │ └── thiserror v1.0.57 (*)
│ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ │ └── strum_macros v0.24.3 (proc-macro)
│ │ │ │ │ ├── heck v0.4.1
│ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ ├── rustversion v1.0.14 (proc-macro)
│ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ ├── test-fuzz-macro v3.0.4 (proc-macro)
│ │ │ │ │ ├── darling v0.14.4 (*)
│ │ │ │ │ ├── if_chain v1.0.2
│ │ │ │ │ ├── lazy_static v1.4.0
│ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ ├── subprocess v0.2.9
│ │ │ │ │ │ └── libc v0.2.153
│ │ │ │ │ ├── syn v1.0.109 (*)
│ │ │ │ │ ├── test-fuzz-internal v3.0.4 (*)
│ │ │ │ │ ├── toolchain_find v0.2.0
│ │ │ │ │ │ ├── home v0.5.9
│ │ │ │ │ │ ├── lazy_static v1.4.0
│ │ │ │ │ │ ├── regex v1.10.3
│ │ │ │ │ │ │ ├── aho-corasick v1.1.2
│ │ │ │ │ │ │ │ └── memchr v2.7.1
│ │ │ │ │ │ │ ├── memchr v2.7.1
│ │ │ │ │ │ │ ├── regex-automata v0.4.5
│ │ │ │ │ │ │ │ ├── aho-corasick v1.1.2 (*)
│ │ │ │ │ │ │ │ ├── memchr v2.7.1
│ │ │ │ │ │ │ │ └── regex-syntax v0.8.2
│ │ │ │ │ │ │ └── regex-syntax v0.8.2
│ │ │ │ │ │ ├── semver v0.11.0
│ │ │ │ │ │ │ └── semver-parser v0.10.2
│ │ │ │ │ │ │ └── pest v2.7.7
│ │ │ │ │ │ │ ├── memchr v2.7.1
│ │ │ │ │ │ │ ├── thiserror v1.0.57 (*)
│ │ │ │ │ │ │ └── ucd-trie v0.1.6
│ │ │ │ │ │ └── walkdir v2.4.0
│ │ │ │ │ │ └── same-file v1.0.6
│ │ │ │ │ └── unzip-n v0.1.2 (proc-macro)
│ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ └── test-fuzz-runtime v3.0.4
│ │ │ │ ├── bincode v1.3.3
│ │ │ │ │ └── serde v1.0.166 (*)
│ │ │ │ ├── hex v0.4.3
│ │ │ │ ├── num-traits v0.2.18 (*)
│ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ ├── sha-1 v0.10.1
│ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ ├── cpufeatures v0.2.12
│ │ │ │ │ │ └── libc v0.2.153
│ │ │ │ │ └── digest v0.10.7
│ │ │ │ │ ├── block-buffer v0.10.4
│ │ │ │ │ │ └── generic-array v0.14.7
│ │ │ │ │ │ └── typenum v1.17.0
│ │ │ │ │ │ [build-dependencies]
│ │ │ │ │ │ └── version_check v0.9.4
│ │ │ │ │ └── crypto-common v0.1.6
│ │ │ │ │ ├── generic-array v0.14.7 (*)
│ │ │ │ │ └── typenum v1.17.0
│ │ │ │ └── test-fuzz-internal v3.0.4 (*)
│ │ │ ├── thiserror v1.0.57 (*)
│ │ │ ├── wasmer v2.3.0
│ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ ├── indexmap v1.9.3
│ │ │ │ │ ├── hashbrown v0.12.3
│ │ │ │ │ │ └── ahash v0.7.8
│ │ │ │ │ │ ├── getrandom v0.2.12 (*)
│ │ │ │ │ │ └── once_cell v1.19.0
│ │ │ │ │ │ [build-dependencies]
│ │ │ │ │ │ └── version_check v0.9.4
│ │ │ │ │ └── serde v1.0.166 (*)
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ └── autocfg v1.1.0
│ │ │ │ ├── loupe v0.1.3
│ │ │ │ │ ├── indexmap v1.9.3 (*)
│ │ │ │ │ ├── loupe-derive v0.1.3 (proc-macro)
│ │ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ │ └── rustversion v1.0.14 (proc-macro)
│ │ │ │ ├── more-asserts v0.2.2
│ │ │ │ ├── target-lexicon v0.12.13
│ │ │ │ ├── thiserror v1.0.57 (*)
│ │ │ │ ├── wasmer-artifact v2.3.0
│ │ │ │ │ ├── enumset v1.1.3
│ │ │ │ │ │ └── enumset_derive v0.8.1 (proc-macro)
│ │ │ │ │ │ ├── darling v0.20.6
│ │ │ │ │ │ │ ├── darling_core v0.20.6
│ │ │ │ │ │ │ │ ├── fnv v1.0.7
│ │ │ │ │ │ │ │ ├── ident_case v1.0.1
│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ │ │ │ └── syn v2.0.48 (*)
│ │ │ │ │ │ │ └── darling_macro v0.20.6 (proc-macro)
│ │ │ │ │ │ │ ├── darling_core v0.20.6 (*)
│ │ │ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ │ │ └── syn v2.0.48 (*)
│ │ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ │ └── syn v2.0.48 (*)
│ │ │ │ │ ├── loupe v0.1.3 (*)
│ │ │ │ │ ├── thiserror v1.0.57 (*)
│ │ │ │ │ ├── wasmer-compiler v2.3.0
│ │ │ │ │ │ ├── enumset v1.1.3 (*)
│ │ │ │ │ │ ├── loupe v0.1.3 (*)
│ │ │ │ │ │ ├── rkyv v0.7.44
│ │ │ │ │ │ │ ├── bytecheck v0.6.12
│ │ │ │ │ │ │ │ ├── bytecheck_derive v0.6.12 (proc-macro)
│ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ │ │ │ │ ├── ptr_meta v0.1.4
│ │ │ │ │ │ │ │ │ └── ptr_meta_derive v0.1.4 (proc-macro)
│ │ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ │ │ │ │ └── simdutf8 v0.1.4
│ │ │ │ │ │ │ ├── hashbrown v0.12.3 (*)
│ │ │ │ │ │ │ ├── indexmap v1.9.3 (*)
│ │ │ │ │ │ │ ├── ptr_meta v0.1.4 (*)
│ │ │ │ │ │ │ ├── rend v0.4.2
│ │ │ │ │ │ │ │ └── bytecheck v0.6.12 (*)
│ │ │ │ │ │ │ ├── rkyv_derive v0.7.44 (proc-macro)
│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ │ │ │ └── seahash v4.1.0
│ │ │ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ │ │ ├── serde_bytes v0.11.14 (*)
│ │ │ │ │ │ ├── smallvec v1.13.1
│ │ │ │ │ │ ├── target-lexicon v0.12.13
│ │ │ │ │ │ ├── thiserror v1.0.57 (*)
│ │ │ │ │ │ ├── wasmer-types v2.3.0
│ │ │ │ │ │ │ ├── backtrace v0.3.69
│ │ │ │ │ │ │ │ ├── addr2line v0.21.0
│ │ │ │ │ │ │ │ │ └── gimli v0.28.1
│ │ │ │ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ │ │ │ ├── libc v0.2.153
│ │ │ │ │ │ │ │ ├── miniz_oxide v0.7.2
│ │ │ │ │ │ │ │ │ └── adler v1.0.2
│ │ │ │ │ │ │ │ ├── object v0.32.2
│ │ │ │ │ │ │ │ │ └── memchr v2.7.1
│ │ │ │ │ │ │ │ └── rustc-demangle v0.1.23
│ │ │ │ │ │ │ │ [build-dependencies]
│ │ │ │ │ │ │ │ └── cc v1.0.83 (*)
│ │ │ │ │ │ │ ├── enum-iterator v0.7.0
│ │ │ │ │ │ │ │ └── enum-iterator-derive v0.7.0 (proc-macro)
│ │ │ │ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ │ │ │ ├── indexmap v1.9.3 (*)
│ │ │ │ │ │ │ ├── loupe v0.1.3 (*)
│ │ │ │ │ │ │ ├── more-asserts v0.2.2
│ │ │ │ │ │ │ ├── rkyv v0.7.44 (*)
│ │ │ │ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ │ │ │ └── thiserror v1.0.57 (*)
│ │ │ │ │ │ └── wasmparser v0.83.0
│ │ │ │ │ └── wasmer-types v2.3.0 (*)
│ │ │ │ ├── wasmer-compiler v2.3.0 (*)
│ │ │ │ ├── wasmer-compiler-cranelift v2.3.0
│ │ │ │ │ ├── cranelift-codegen v0.82.3
│ │ │ │ │ │ ├── cranelift-bforest v0.82.3
│ │ │ │ │ │ │ └── cranelift-entity v0.82.3
│ │ │ │ │ │ ├── cranelift-codegen-shared v0.82.3
│ │ │ │ │ │ ├── cranelift-entity v0.82.3
│ │ │ │ │ │ ├── gimli v0.26.2
│ │ │ │ │ │ │ ├── fallible-iterator v0.2.0
│ │ │ │ │ │ │ ├── indexmap v1.9.3 (*)
│ │ │ │ │ │ │ └── stable_deref_trait v1.2.0
│ │ │ │ │ │ ├── log v0.4.20 (*)
│ │ │ │ │ │ ├── regalloc v0.0.34
│ │ │ │ │ │ │ ├── log v0.4.20 (*)
│ │ │ │ │ │ │ ├── rustc-hash v1.1.0
│ │ │ │ │ │ │ └── smallvec v1.13.1
│ │ │ │ │ │ ├── smallvec v1.13.1
│ │ │ │ │ │ └── target-lexicon v0.12.13
│ │ │ │ │ │ [build-dependencies]
│ │ │ │ │ │ └── cranelift-codegen-meta v0.82.3
│ │ │ │ │ │ └── cranelift-codegen-shared v0.82.3
│ │ │ │ │ ├── cranelift-entity v0.82.3
│ │ │ │ │ ├── cranelift-frontend v0.82.3
│ │ │ │ │ │ ├── cranelift-codegen v0.82.3 (*)
│ │ │ │ │ │ ├── log v0.4.20 (*)
│ │ │ │ │ │ ├── smallvec v1.13.1
│ │ │ │ │ │ └── target-lexicon v0.12.13
│ │ │ │ │ ├── gimli v0.26.2 (*)
│ │ │ │ │ ├── loupe v0.1.3 (*)
│ │ │ │ │ ├── more-asserts v0.2.2
│ │ │ │ │ ├── rayon v1.8.1
│ │ │ │ │ │ ├── either v1.10.0
│ │ │ │ │ │ └── rayon-core v1.12.1
│ │ │ │ │ │ ├── crossbeam-deque v0.8.5
│ │ │ │ │ │ │ ├── crossbeam-epoch v0.9.18
│ │ │ │ │ │ │ │ └── crossbeam-utils v0.8.19
│ │ │ │ │ │ │ └── crossbeam-utils v0.8.19
│ │ │ │ │ │ └── crossbeam-utils v0.8.19
│ │ │ │ │ ├── smallvec v1.13.1
│ │ │ │ │ ├── target-lexicon v0.12.13
│ │ │ │ │ ├── tracing v0.1.40 (*)
│ │ │ │ │ ├── wasmer-compiler v2.3.0 (*)
│ │ │ │ │ └── wasmer-types v2.3.0 (*)
│ │ │ │ ├── wasmer-derive v2.3.0 (proc-macro)
│ │ │ │ │ ├── proc-macro-error v1.0.4 (*)
│ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ ├── wasmer-engine v2.3.0
│ │ │ │ │ ├── backtrace v0.3.69 (*)
│ │ │ │ │ ├── enumset v1.1.3 (*)
│ │ │ │ │ ├── lazy_static v1.4.0
│ │ │ │ │ ├── loupe v0.1.3 (*)
│ │ │ │ │ ├── memmap2 v0.5.10
│ │ │ │ │ │ └── libc v0.2.153
│ │ │ │ │ ├── more-asserts v0.2.2
│ │ │ │ │ ├── rustc-demangle v0.1.23
│ │ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ │ ├── serde_bytes v0.11.14 (*)
│ │ │ │ │ ├── target-lexicon v0.12.13
│ │ │ │ │ ├── thiserror v1.0.57 (*)
│ │ │ │ │ ├── wasmer-artifact v2.3.0 (*)
│ │ │ │ │ ├── wasmer-compiler v2.3.0 (*)
│ │ │ │ │ ├── wasmer-types v2.3.0 (*)
│ │ │ │ │ └── wasmer-vm v2.3.0
│ │ │ │ │ ├── backtrace v0.3.69 (*)
│ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ ├── corosensei v0.1.4
│ │ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ │ ├── libc v0.2.153
│ │ │ │ │ │ └── scopeguard v1.2.0
│ │ │ │ │ │ [build-dependencies]
│ │ │ │ │ │ └── autocfg v1.1.0
│ │ │ │ │ ├── enum-iterator v0.7.0 (*)
│ │ │ │ │ ├── indexmap v1.9.3 (*)
│ │ │ │ │ ├── lazy_static v1.4.0
│ │ │ │ │ ├── libc v0.2.153
│ │ │ │ │ ├── loupe v0.1.3 (*)
│ │ │ │ │ ├── mach v0.3.2
│ │ │ │ │ │ └── libc v0.2.153
│ │ │ │ │ ├── memoffset v0.6.5
│ │ │ │ │ │ [build-dependencies]
│ │ │ │ │ │ └── autocfg v1.1.0
│ │ │ │ │ ├── more-asserts v0.2.2
│ │ │ │ │ ├── region v3.0.0
│ │ │ │ │ │ ├── bitflags v1.3.2
│ │ │ │ │ │ ├── libc v0.2.153
│ │ │ │ │ │ └── mach v0.3.2 (*)
│ │ │ │ │ ├── rkyv v0.7.44 (*)
│ │ │ │ │ ├── scopeguard v1.2.0
│ │ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ │ ├── thiserror v1.0.57 (*)
│ │ │ │ │ ├── wasmer-artifact v2.3.0 (*)
│ │ │ │ │ └── wasmer-types v2.3.0 (*)
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ └── cc v1.0.83 (*)
│ │ │ │ ├── wasmer-engine-dylib v2.3.0
│ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ ├── enum-iterator v0.7.0 (*)
│ │ │ │ │ ├── enumset v1.1.3 (*)
│ │ │ │ │ ├── leb128 v0.2.5
│ │ │ │ │ ├── libloading v0.7.4
│ │ │ │ │ │ └── cfg-if v1.0.0
│ │ │ │ │ ├── loupe v0.1.3 (*)
│ │ │ │ │ ├── object v0.28.4
│ │ │ │ │ │ ├── crc32fast v1.4.0
│ │ │ │ │ │ │ └── cfg-if v1.0.0
│ │ │ │ │ │ ├── hashbrown v0.11.2
│ │ │ │ │ │ │ └── ahash v0.7.8 (*)
│ │ │ │ │ │ ├── indexmap v1.9.3 (*)
│ │ │ │ │ │ └── memchr v2.7.1
│ │ │ │ │ ├── rkyv v0.7.44 (*)
│ │ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ │ ├── tempfile v3.10.0
│ │ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ │ ├── fastrand v2.0.1
│ │ │ │ │ │ └── rustix v0.38.31
│ │ │ │ │ │ ├── bitflags v2.4.2
│ │ │ │ │ │ ├── errno v0.3.8
│ │ │ │ │ │ │ └── libc v0.2.153
│ │ │ │ │ │ └── libc v0.2.153
│ │ │ │ │ ├── tracing v0.1.40 (*)
│ │ │ │ │ ├── wasmer-artifact v2.3.0 (*)
│ │ │ │ │ ├── wasmer-compiler v2.3.0 (*)
│ │ │ │ │ ├── wasmer-engine v2.3.0 (*)
│ │ │ │ │ ├── wasmer-object v2.3.0
│ │ │ │ │ │ ├── object v0.28.4 (*)
│ │ │ │ │ │ ├── thiserror v1.0.57 (*)
│ │ │ │ │ │ ├── wasmer-compiler v2.3.0 (*)
│ │ │ │ │ │ └── wasmer-types v2.3.0 (*)
│ │ │ │ │ ├── wasmer-types v2.3.0 (*)
│ │ │ │ │ ├── wasmer-vm v2.3.0 (*)
│ │ │ │ │ └── which v4.4.2
│ │ │ │ │ ├── either v1.10.0
│ │ │ │ │ ├── home v0.5.9
│ │ │ │ │ └── rustix v0.38.31 (*)
│ │ │ │ ├── wasmer-engine-universal v2.3.0
│ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ ├── enumset v1.1.3 (*)
│ │ │ │ │ ├── leb128 v0.2.5
│ │ │ │ │ ├── loupe v0.1.3 (*)
│ │ │ │ │ ├── region v3.0.0 (*)
│ │ │ │ │ ├── rkyv v0.7.44 (*)
│ │ │ │ │ ├── wasmer-compiler v2.3.0 (*)
│ │ │ │ │ ├── wasmer-engine v2.3.0 (*)
│ │ │ │ │ ├── wasmer-engine-universal-artifact v2.3.0
│ │ │ │ │ │ ├── enum-iterator v0.7.0 (*)
│ │ │ │ │ │ ├── enumset v1.1.3 (*)
│ │ │ │ │ │ ├── loupe v0.1.3 (*)
│ │ │ │ │ │ ├── rkyv v0.7.44 (*)
│ │ │ │ │ │ ├── thiserror v1.0.57 (*)
│ │ │ │ │ │ ├── wasmer-artifact v2.3.0 (*)
│ │ │ │ │ │ ├── wasmer-compiler v2.3.0 (*)
│ │ │ │ │ │ └── wasmer-types v2.3.0 (*)
│ │ │ │ │ ├── wasmer-types v2.3.0 (*)
│ │ │ │ │ └── wasmer-vm v2.3.0 (*)
│ │ │ │ ├── wasmer-types v2.3.0 (*)
│ │ │ │ ├── wasmer-vm v2.3.0 (*)
│ │ │ │ └── wat v1.0.71
│ │ │ │ └── wast v64.0.0
│ │ │ │ ├── leb128 v0.2.5
│ │ │ │ ├── memchr v2.7.1
│ │ │ │ ├── unicode-width v0.1.11
│ │ │ │ └── wasm-encoder v0.32.0
│ │ │ │ └── leb128 v0.2.5
│ │ │ └── wasmer-engine v2.3.0 (*)
│ │ ├── parking_lot v0.12.1
│ │ │ ├── lock_api v0.4.11
│ │ │ │ └── scopeguard v1.2.0
│ │ │ │ [build-dependencies]
│ │ │ │ └── autocfg v1.1.0
│ │ │ └── parking_lot_core v0.9.9
│ │ │ ├── cfg-if v1.0.0
│ │ │ ├── libc v0.2.153
│ │ │ └── smallvec v1.13.1
│ │ ├── paste v1.0.5 (proc-macro)
│ │ ├── serde v1.0.166 (*)
│ │ └── tracing v0.1.40 (*)
│ ├── paste v1.0.5 (proc-macro)
│ ├── serde v1.0.166 (*)
│ ├── serde_bytes v0.11.14 (*)
│ ├── tracing v0.1.40 (*)
│ └── tracing-core v0.1.32 (*)
├── hdk v0.1.6
│ ├── hdi v0.2.6 (*)
│ ├── hdk_derive v0.1.6 (proc-macro) (*)
│ ├── holo_hash v0.1.6 (*)
│ ├── holochain_wasmer_guest v0.0.83 (*)
│ ├── holochain_zome_types v0.1.6
│ │ ├── arbitrary v1.3.2 (*)
│ │ ├── contrafact v0.1.0-dev.1
│ │ │ ├── anyhow v1.0.79
│ │ │ ├── arbitrary v1.3.2 (*)
│ │ │ ├── derive_more v0.99.17 (proc-macro) (*)
│ │ │ ├── itertools v0.10.5
│ │ │ │ └── either v1.10.0
│ │ │ ├── num v0.4.1
│ │ │ │ ├── num-bigint v0.4.4
│ │ │ │ │ ├── num-integer v0.1.46 (*)
│ │ │ │ │ └── num-traits v0.2.18 (*)
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ └── autocfg v1.1.0
│ │ │ │ ├── num-complex v0.4.5
│ │ │ │ │ └── num-traits v0.2.18 (*)
│ │ │ │ ├── num-integer v0.1.46 (*)
│ │ │ │ ├── num-iter v0.1.44
│ │ │ │ │ ├── num-integer v0.1.46 (*)
│ │ │ │ │ └── num-traits v0.2.18 (*)
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ └── autocfg v1.1.0
│ │ │ │ ├── num-rational v0.4.1
│ │ │ │ │ ├── num-bigint v0.4.4 (*)
│ │ │ │ │ ├── num-integer v0.1.46 (*)
│ │ │ │ │ └── num-traits v0.2.18 (*)
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ └── autocfg v1.1.0
│ │ │ │ └── num-traits v0.2.18 (*)
│ │ │ └── tracing v0.1.40 (*)
│ │ ├── derive_builder v0.9.0 (proc-macro)
│ │ │ ├── darling v0.10.2
│ │ │ │ ├── darling_core v0.10.2
│ │ │ │ │ ├── fnv v1.0.7
│ │ │ │ │ ├── ident_case v1.0.1
│ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ ├── strsim v0.9.3
│ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ └── darling_macro v0.10.2 (proc-macro)
│ │ │ │ ├── darling_core v0.10.2 (*)
│ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ └── syn v1.0.109 (*)
│ │ │ ├── derive_builder_core v0.9.0
│ │ │ │ ├── darling v0.10.2 (*)
│ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ └── syn v1.0.109 (*)
│ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ ├── quote v1.0.35 (*)
│ │ │ └── syn v1.0.109 (*)
│ │ ├── fixt v0.1.5 (*)
│ │ ├── holo_hash v0.1.6 (*)
│ │ ├── holochain_integrity_types v0.1.6 (*)
│ │ ├── holochain_serialized_bytes v0.0.51 (*)
│ │ ├── holochain_wasmer_common v0.0.83 (*)
│ │ ├── kitsune_p2p_dht v0.1.4
│ │ │ ├── colored v1.9.4
│ │ │ │ ├── is-terminal v0.4.12
│ │ │ │ │ └── libc v0.2.153
│ │ │ │ └── lazy_static v1.4.0
│ │ │ ├── derivative v2.2.0 (proc-macro)
│ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ └── syn v1.0.109 (*)
│ │ │ ├── derive_more v0.99.17 (proc-macro) (*)
│ │ │ ├── futures v0.3.30 (*)
│ │ │ ├── gcollections v1.5.0 (*)
│ │ │ ├── intervallum v1.4.1 (*)
│ │ │ ├── kitsune_p2p_dht_arc v0.1.4 (*)
│ │ │ ├── kitsune_p2p_timestamp v0.1.4
│ │ │ │ ├── arbitrary v1.3.2 (*)
│ │ │ │ ├── chrono v0.4.34 (*)
│ │ │ │ ├── derive_more v0.99.17 (proc-macro) (*)
│ │ │ │ ├── rusqlite v0.29.0 (*)
│ │ │ │ └── serde v1.0.166 (*)
│ │ │ ├── must_future v0.1.2 (*)
│ │ │ ├── num-traits v0.2.18 (*)
│ │ │ ├── once_cell v1.19.0
│ │ │ ├── rand v0.8.5 (*)
│ │ │ ├── serde v1.0.166 (*)
│ │ │ ├── statrs v0.15.0
│ │ │ │ ├── approx v0.5.1
│ │ │ │ │ └── num-traits v0.2.18 (*)
│ │ │ │ ├── lazy_static v1.4.0
│ │ │ │ ├── nalgebra v0.27.1
│ │ │ │ │ ├── approx v0.5.1 (*)
│ │ │ │ │ ├── matrixmultiply v0.3.8
│ │ │ │ │ │ └── rawpointer v0.2.1
│ │ │ │ │ │ [build-dependencies]
│ │ │ │ │ │ └── autocfg v1.1.0
│ │ │ │ │ ├── nalgebra-macros v0.1.0 (proc-macro)
│ │ │ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ │ │ └── syn v1.0.109 (*)
│ │ │ │ │ ├── num-complex v0.4.5 (*)
│ │ │ │ │ ├── num-rational v0.4.1 (*)
│ │ │ │ │ ├── num-traits v0.2.18 (*)
│ │ │ │ │ ├── rand v0.8.5 (*)
│ │ │ │ │ ├── rand_distr v0.4.3
│ │ │ │ │ │ ├── num-traits v0.2.18 (*)
│ │ │ │ │ │ └── rand v0.8.5 (*)
│ │ │ │ │ ├── simba v0.5.1
│ │ │ │ │ │ ├── approx v0.5.1 (*)
│ │ │ │ │ │ ├── num-complex v0.4.5 (*)
│ │ │ │ │ │ ├── num-traits v0.2.18 (*)
│ │ │ │ │ │ └── paste v1.0.5 (proc-macro)
│ │ │ │ │ └── typenum v1.17.0
│ │ │ │ ├── num-traits v0.2.18 (*)
│ │ │ │ └── rand v0.8.5 (*)
│ │ │ ├── thiserror v1.0.57 (*)
│ │ │ └── tracing v0.1.40 (*)
│ │ ├── kitsune_p2p_timestamp v0.1.4 (*)
│ │ ├── nanoid v0.3.0
│ │ │ └── rand v0.6.5
│ │ │ ├── libc v0.2.153
│ │ │ ├── rand_chacha v0.1.1
│ │ │ │ └── rand_core v0.3.1
│ │ │ │ └── rand_core v0.4.2
│ │ │ │ [build-dependencies]
│ │ │ │ └── autocfg v0.1.8
│ │ │ │ └── autocfg v1.1.0
│ │ │ ├── rand_core v0.4.2
│ │ │ ├── rand_hc v0.1.0
│ │ │ │ └── rand_core v0.3.1 (*)
│ │ │ ├── rand_isaac v0.1.1
│ │ │ │ └── rand_core v0.3.1 (*)
│ │ │ ├── rand_jitter v0.1.4
│ │ │ │ ├── libc v0.2.153
│ │ │ │ └── rand_core v0.4.2
│ │ │ ├── rand_os v0.1.3
│ │ │ │ ├── libc v0.2.153
│ │ │ │ └── rand_core v0.4.2
│ │ │ ├── rand_pcg v0.1.2
│ │ │ │ └── rand_core v0.4.2
│ │ │ │ [build-dependencies]
│ │ │ │ └── autocfg v0.1.8 (*)
│ │ │ └── rand_xorshift v0.1.1
│ │ │ └── rand_core v0.3.1 (*)
│ │ │ [build-dependencies]
│ │ │ └── autocfg v0.1.8 (*)
│ │ ├── num_enum v0.5.11
│ │ │ └── num_enum_derive v0.5.11 (proc-macro)
│ │ │ ├── proc-macro-crate v1.3.1
│ │ │ │ ├── once_cell v1.19.0
│ │ │ │ └── toml_edit v0.19.15
│ │ │ │ ├── indexmap v2.2.3 (*)
│ │ │ │ ├── serde v1.0.166 (*)
│ │ │ │ ├── serde_spanned v0.6.5
│ │ │ │ │ └── serde v1.0.166 (*)
│ │ │ │ ├── toml_datetime v0.6.5
│ │ │ │ │ └── serde v1.0.166 (*)
│ │ │ │ └── winnow v0.5.40
│ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ ├── quote v1.0.35 (*)
│ │ │ └── syn v1.0.109 (*)
│ │ ├── once_cell v1.19.0
│ │ ├── paste v1.0.5 (proc-macro)
│ │ ├── rand v0.8.5 (*)
│ │ ├── rusqlite v0.29.0 (*)
│ │ ├── serde v1.0.166 (*)
│ │ ├── serde_bytes v0.11.14 (*)
│ │ ├── serde_yaml v0.9.25
│ │ │ ├── indexmap v2.2.3 (*)
│ │ │ ├── itoa v1.0.10
│ │ │ ├── ryu v1.0.16
│ │ │ ├── serde v1.0.166 (*)
│ │ │ └── unsafe-libyaml v0.2.10
│ │ ├── shrinkwraprs v0.3.0 (proc-macro)
│ │ │ ├── bitflags v1.3.2
│ │ │ ├── itertools v0.8.2
│ │ │ │ └── either v1.10.0
│ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ ├── quote v1.0.35 (*)
│ │ │ └── syn v1.0.109 (*)
│ │ ├── strum v0.18.0
│ │ ├── subtle v2.5.0
│ │ ├── subtle-encoding v0.5.1
│ │ │ └── zeroize v1.7.0
│ │ ├── thiserror v1.0.57 (*)
│ │ └── tracing v0.1.40 (*)
│ ├── paste v1.0.5 (proc-macro)
│ ├── serde v1.0.166 (*)
│ ├── serde_bytes v0.11.14 (*)
│ ├── thiserror v1.0.57 (*)
│ ├── tracing v0.1.40 (*)
│ └── tracing-core v0.1.32 (*)
├── holochain_integrity_types v0.2.6
│ ├── holo_hash v0.2.6
│ │ ├── holochain_serialized_bytes v0.0.53
│ │ │ ├── holochain_serialized_bytes_derive v0.0.53 (proc-macro)
│ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ └── syn v1.0.109 (*)
│ │ │ ├── rmp-serde v0.15.5 (*)
│ │ │ ├── serde v1.0.166 (*)
│ │ │ ├── serde-transcode v1.1.1 (*)
│ │ │ ├── serde_bytes v0.11.14 (*)
│ │ │ ├── serde_json v1.0.109 (*)
│ │ │ └── thiserror v1.0.57 (*)
│ │ ├── holochain_util v0.2.6
│ │ │ ├── cfg-if v0.1.10
│ │ │ ├── derive_more v0.99.17 (proc-macro) (*)
│ │ │ ├── dunce v1.0.4
│ │ │ ├── futures v0.3.30 (*)
│ │ │ ├── num_cpus v1.16.0
│ │ │ │ └── libc v0.2.153
│ │ │ └── once_cell v1.19.0
│ │ ├── holochain_wasmer_common v0.0.92
│ │ │ ├── holochain_serialized_bytes v0.0.53 (*)
│ │ │ ├── serde v1.0.166 (*)
│ │ │ ├── serde_bytes v0.11.14 (*)
│ │ │ ├── test-fuzz v3.0.4 (*)
│ │ │ ├── thiserror v1.0.57 (*)
│ │ │ └── wasmer v4.2.4
│ │ │ ├── bytes v1.5.0
│ │ │ ├── cfg-if v1.0.0
│ │ │ ├── derivative v2.2.0 (proc-macro) (*)
│ │ │ ├── indexmap v1.9.3 (*)
│ │ │ ├── more-asserts v0.2.2
│ │ │ ├── rustc-demangle v0.1.23
│ │ │ ├── shared-buffer v0.1.4
│ │ │ │ ├── bytes v1.5.0
│ │ │ │ └── memmap2 v0.6.2
│ │ │ │ └── libc v0.2.153
│ │ │ ├── target-lexicon v0.12.13
│ │ │ ├── thiserror v1.0.57 (*)
│ │ │ ├── wasmer-compiler v4.2.4
│ │ │ │ ├── backtrace v0.3.69 (*)
│ │ │ │ ├── bytes v1.5.0
│ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ ├── enum-iterator v0.7.0 (*)
│ │ │ │ ├── enumset v1.1.3 (*)
│ │ │ │ ├── lazy_static v1.4.0
│ │ │ │ ├── leb128 v0.2.5
│ │ │ │ ├── memmap2 v0.5.10 (*)
│ │ │ │ ├── more-asserts v0.2.2
│ │ │ │ ├── region v3.0.0 (*)
│ │ │ │ ├── rkyv v0.7.44 (*)
│ │ │ │ ├── self_cell v1.0.3
│ │ │ │ ├── shared-buffer v0.1.4 (*)
│ │ │ │ ├── smallvec v1.13.1
│ │ │ │ ├── thiserror v1.0.57 (*)
│ │ │ │ ├── wasmer-types v4.2.4
│ │ │ │ │ ├── bytecheck v0.6.12 (*)
│ │ │ │ │ ├── enum-iterator v0.7.0 (*)
│ │ │ │ │ ├── enumset v1.1.3 (*)
│ │ │ │ │ ├── indexmap v1.9.3 (*)
│ │ │ │ │ ├── more-asserts v0.2.2
│ │ │ │ │ ├── rkyv v0.7.44 (*)
│ │ │ │ │ ├── target-lexicon v0.12.13
│ │ │ │ │ └── thiserror v1.0.57 (*)
│ │ │ │ ├── wasmer-vm v4.2.4
│ │ │ │ │ ├── backtrace v0.3.69 (*)
│ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ ├── corosensei v0.1.4 (*)
│ │ │ │ │ ├── crossbeam-queue v0.3.11
│ │ │ │ │ │ └── crossbeam-utils v0.8.19
│ │ │ │ │ ├── dashmap v5.5.3
│ │ │ │ │ │ ├── cfg-if v1.0.0
│ │ │ │ │ │ ├── hashbrown v0.14.3 (*)
│ │ │ │ │ │ ├── lock_api v0.4.11 (*)
│ │ │ │ │ │ ├── once_cell v1.19.0
│ │ │ │ │ │ └── parking_lot_core v0.9.9 (*)
│ │ │ │ │ ├── derivative v2.2.0 (proc-macro) (*)
│ │ │ │ │ ├── enum-iterator v0.7.0 (*)
│ │ │ │ │ ├── fnv v1.0.7
│ │ │ │ │ ├── indexmap v1.9.3 (*)
│ │ │ │ │ ├── lazy_static v1.4.0
│ │ │ │ │ ├── libc v0.2.153
│ │ │ │ │ ├── mach v0.3.2 (*)
│ │ │ │ │ ├── memoffset v0.9.0
│ │ │ │ │ │ [build-dependencies]
│ │ │ │ │ │ └── autocfg v1.1.0
│ │ │ │ │ ├── more-asserts v0.2.2
│ │ │ │ │ ├── region v3.0.0 (*)
│ │ │ │ │ ├── scopeguard v1.2.0
│ │ │ │ │ ├── thiserror v1.0.57 (*)
│ │ │ │ │ └── wasmer-types v4.2.4 (*)
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ └── cc v1.0.83 (*)
│ │ │ │ └── wasmparser v0.95.0
│ │ │ │ ├── indexmap v1.9.3 (*)
│ │ │ │ └── url v2.5.0
│ │ │ │ ├── form_urlencoded v1.2.1
│ │ │ │ │ └── percent-encoding v2.3.1
│ │ │ │ ├── idna v0.5.0
│ │ │ │ │ ├── unicode-bidi v0.3.15
│ │ │ │ │ └── unicode-normalization v0.1.22
│ │ │ │ │ └── tinyvec v1.6.0
│ │ │ │ │ └── tinyvec_macros v0.1.1
│ │ │ │ ├── percent-encoding v2.3.1
│ │ │ │ └── serde v1.0.166 (*)
│ │ │ ├── wasmer-compiler-cranelift v4.2.4
│ │ │ │ ├── cranelift-codegen v0.91.1
│ │ │ │ │ ├── arrayvec v0.7.4
│ │ │ │ │ ├── bumpalo v3.14.0
│ │ │ │ │ ├── cranelift-bforest v0.91.1
│ │ │ │ │ │ └── cranelift-entity v0.91.1
│ │ │ │ │ ├── cranelift-codegen-shared v0.91.1
│ │ │ │ │ ├── cranelift-egraph v0.91.1
│ │ │ │ │ │ ├── cranelift-entity v0.91.1
│ │ │ │ │ │ ├── fxhash v0.2.1
│ │ │ │ │ │ │ └── byteorder v1.5.0
│ │ │ │ │ │ ├── hashbrown v0.12.3 (*)
│ │ │ │ │ │ ├── indexmap v1.9.3 (*)
│ │ │ │ │ │ ├── log v0.4.20 (*)
│ │ │ │ │ │ └── smallvec v1.13.1
│ │ │ │ │ ├── cranelift-entity v0.91.1
│ │ │ │ │ ├── gimli v0.26.2 (*)
│ │ │ │ │ ├── log v0.4.20 (*)
│ │ │ │ │ ├── regalloc2 v0.5.1
│ │ │ │ │ │ ├── fxhash v0.2.1 (*)
│ │ │ │ │ │ ├── log v0.4.20 (*)
│ │ │ │ │ │ ├── slice-group-by v0.3.1
│ │ │ │ │ │ └── smallvec v1.13.1
│ │ │ │ │ ├── smallvec v1.13.1
│ │ │ │ │ └── target-lexicon v0.12.13
│ │ │ │ │ [build-dependencies]
│ │ │ │ │ ├── cranelift-codegen-meta v0.91.1
│ │ │ │ │ │ └── cranelift-codegen-shared v0.91.1
│ │ │ │ │ └── cranelift-isle v0.91.1
│ │ │ │ ├── cranelift-entity v0.91.1
│ │ │ │ ├── cranelift-frontend v0.91.1
│ │ │ │ │ ├── cranelift-codegen v0.91.1 (*)
│ │ │ │ │ ├── log v0.4.20 (*)
│ │ │ │ │ ├── smallvec v1.13.1
│ │ │ │ │ └── target-lexicon v0.12.13
│ │ │ │ ├── gimli v0.26.2 (*)
│ │ │ │ ├── more-asserts v0.2.2
│ │ │ │ ├── rayon v1.8.1 (*)
│ │ │ │ ├── smallvec v1.13.1
│ │ │ │ ├── target-lexicon v0.12.13
│ │ │ │ ├── tracing v0.1.40 (*)
│ │ │ │ ├── wasmer-compiler v4.2.4 (*)
│ │ │ │ └── wasmer-types v4.2.4 (*)
│ │ │ ├── wasmer-derive v4.2.4 (proc-macro)
│ │ │ │ ├── proc-macro-error v1.0.4 (*)
│ │ │ │ ├── proc-macro2 v1.0.78 (*)
│ │ │ │ ├── quote v1.0.35 (*)
│ │ │ │ └── syn v1.0.109 (*)
│ │ │ ├── wasmer-types v4.2.4 (*)
│ │ │ ├── wasmer-vm v4.2.4 (*)
│ │ │ └── wat v1.0.71 (*)
│ │ ├── kitsune_p2p_dht_arc v0.2.6
│ │ │ ├── derive_more v0.99.17 (proc-macro) (*)
│ │ │ ├── gcollections v1.5.0 (*)
│ │ │ ├── intervallum v1.4.1 (*)
│ │ │ ├── num-traits v0.2.18 (*)
│ │ │ └── serde v1.0.166 (*)
│ │ ├── serde v1.0.166 (*)
│ │ ├── serde_bytes v0.11.14 (*)
│ │ └── thiserror v1.0.57 (*)
│ ├── holochain_serialized_bytes v0.0.53 (*)
│ ├── holochain_util v0.2.6 (*)
│ ├── kitsune_p2p_dht v0.2.6
│ │ ├── colored v1.9.4 (*)
│ │ ├── derivative v2.2.0 (proc-macro) (*)
│ │ ├── derive_more v0.99.17 (proc-macro) (*)
│ │ ├── futures v0.3.30 (*)
│ │ ├── gcollections v1.5.0 (*)
│ │ ├── intervallum v1.4.1 (*)
│ │ ├── kitsune_p2p_dht_arc v0.2.6 (*)
│ │ ├── kitsune_p2p_timestamp v0.2.6
│ │ │ ├── chrono v0.4.34 (*)
│ │ │ ├── derive_more v0.99.17 (proc-macro) (*)
│ │ │ └── serde v1.0.166 (*)
│ │ ├── must_future v0.1.2 (*)
│ │ ├── num-traits v0.2.18 (*)
│ │ ├── once_cell v1.19.0
│ │ ├── rand v0.8.5 (*)
│ │ ├── serde v1.0.166 (*)
│ │ ├── statrs v0.15.0 (*)
│ │ ├── thiserror v1.0.57 (*)
│ │ └── tracing v0.1.40 (*)
│ ├── kitsune_p2p_timestamp v0.2.6 (*)
│ ├── paste v1.0.5 (proc-macro)
│ ├── serde v1.0.166 (*)
│ ├── serde_bytes v0.11.14 (*)
│ └── subtle v2.5.0
├── holons v0.0.1 (/Users/stevemelville/dev/map-proto/map-dev/map-holons/crates/coordinator/holons)
│ ├── derive-new v0.5.9 (proc-macro) (*)
│ ├── hdi v0.2.6 (*)
│ ├── hdk v0.1.6 (*)
│ ├── holochain_integrity_types v0.2.6 (*)
│ ├── holons_integrity v0.0.1 (/Users/stevemelville/dev/map-proto/map-dev/map-holons/crates/integrity/holons_integrity)
│ │ ├── derive-new v0.5.9 (proc-macro) (*)
│ │ ├── hdi v0.2.6 (*)