This repository has been archived by the owner on Jul 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsonarqube.json
1351 lines (1351 loc) · 394 KB
/
sonarqube.json
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
Updating crates.io index
Updating git repository `https://github.com/pontem-network/move.git`
Downloading crates ...
Downloaded futures-io v0.3.21
Downloaded futures-sink v0.3.21
Downloaded futures-macro v0.3.21
Downloaded linked-hash-map v0.5.4
Downloaded phf_shared v0.10.0
Downloaded paste v1.0.6
Downloaded wyz v0.2.0
Downloaded rand_core v0.6.3
Downloaded aead v0.3.2
Downloaded ansi_term v0.12.1
Downloaded ahash v0.7.6
Downloaded want v0.3.0
Downloaded aho-corasick v0.7.18
Downloaded globset v0.4.8
Downloaded anyhow v1.0.56
Downloaded thread_local v1.1.4
Downloaded phf v0.10.1
Downloaded sha256 v1.0.3
Downloaded serde-reflection v0.3.5
Downloaded zeroize_derive v1.3.2
Downloaded cfg-if v0.1.10
Downloaded zeroize v1.5.3
Downloaded glob v0.3.0
Downloaded generic-array v0.14.5
Downloaded generic-array v0.12.4
Downloaded Inflector v0.11.4
Downloaded ipnet v2.4.0
Downloaded hash256-std-hasher v0.15.2
Downloaded hash-db v0.15.2
Downloaded futures-util v0.3.21
Downloaded h2 v0.2.7
Downloaded log v0.4.14
Downloaded termcolor v1.1.3
Downloaded phf_codegen v0.10.0
Downloaded parking_lot_core v0.9.1
Downloaded memchr v2.4.1
Downloaded scopeguard v1.1.0
Downloaded petgraph v0.6.0
Downloaded pin-utils v0.1.0
Downloaded plotters-svg v0.3.1
Downloaded proc-macro-error v1.0.4
Downloaded proc-macro-hack v0.5.19
Downloaded proc-macro-error-attr v1.0.4
Downloaded proc-macro2 v1.0.36
Downloaded rand_chacha v0.2.2
Downloaded radium v0.6.2
Downloaded ryu v1.0.9
Downloaded schemars v0.8.8
Downloaded slab v0.4.5
Downloaded socket2 v0.4.4
Downloaded tempfile v3.3.0
Downloaded remove_dir_all v0.5.3
Downloaded pkg-config v0.3.24
Downloaded rand v0.8.5
Downloaded pin-project-lite v0.2.8
Downloaded regex v1.5.5
Downloaded pin-project v1.0.10
Downloaded pin-project-lite v0.1.12
Downloaded itertools v0.10.3
Downloaded ppv-lite86 v0.2.16
Downloaded plotters-backend v0.3.2
Downloaded rust-ini v0.13.0
Downloaded rpassword v5.0.1
Downloaded regex-syntax v0.6.25
Downloaded ouroboros v0.9.5
Downloaded sha3 v0.9.1
Downloaded pretty v0.10.0
Downloaded proc-macro-crate v1.1.3
Downloaded ref-cast v1.0.6
Downloaded ptree v0.4.0
Downloaded primitive-types v0.10.1
Downloaded stable_deref_trait v1.2.0
Downloaded walkdir v2.3.2
Downloaded yaml-rust v0.4.5
Downloaded proc-macro2 v0.4.30
Downloaded quote v0.6.13
Downloaded aes v0.6.0
Downloaded lock_api v0.3.4
Downloaded rand_xoshiro v0.4.0
Downloaded rayon-core v1.9.1
Downloaded aes v0.7.5
Downloaded rand_core v0.5.1
Downloaded aes-gcm v0.8.0
Downloaded rayon v1.5.1
Downloaded serde_bytes v0.11.5
Downloaded serde_derive v1.0.136
Downloaded serde_urlencoded v0.7.1
Downloaded block-padding v0.1.5
Downloaded byteorder v1.4.3
Downloaded byte-tools v0.3.1
Downloaded slug v0.1.4
Downloaded smallvec v1.8.0
Downloaded strsim v0.8.0
Downloaded subtle v2.4.1
Downloaded cipher v0.3.0
Downloaded rlp-derive v0.1.0
Downloaded scale-info-derive v1.0.0
Downloaded serde-value v0.7.0
Downloaded x25519-dalek-fiat v0.1.0
Downloaded tap v1.0.1
Downloaded arrayvec v0.4.12
Downloaded auto_impl v0.5.0
Downloaded bitmaps v2.1.0
Downloaded sized-chunks v0.6.5
Downloaded simplelog v0.9.0
Downloaded instant v0.1.12
Downloaded blake2-rfc v0.2.18
Downloaded bcs v0.1.3
Downloaded bech32 v0.7.3
Downloaded serde-name v0.1.2
Downloaded scale-info v1.0.0
Downloaded codespan v0.11.1
Downloaded crossbeam-channel v0.5.3
Downloaded serde-hjson v0.9.1
Downloaded arrayvec v0.7.2
Downloaded structopt-derive v0.4.18
Downloaded synstructure v0.12.6
Downloaded bytes v1.1.0
Downloaded structopt v0.3.26
Downloaded bytes v0.5.6
Downloaded syn v0.15.44
Downloaded fake-simd v0.1.2
Downloaded iovec v0.1.4
Downloaded thiserror-impl v1.0.30
Downloaded itoa v1.0.1
Downloaded tinyvec v1.5.1
Downloaded signal-hook-mio v0.2.1
Downloaded tint v1.0.1
Downloaded cc v1.0.73
Downloaded async-trait v0.1.52
Downloaded colored v2.0.0
Downloaded internment v0.5.6
Downloaded fail v0.4.0
Downloaded indexmap v1.8.0
Downloaded serde_derive_internals v0.25.0
Downloaded quote v1.0.15
Downloaded crossbeam-epoch v0.9.8
Downloaded universal-hash v0.4.1
Downloaded tiny-keccak v2.0.2
Downloaded itertools v0.9.0
Downloaded schemars_derive v0.8.8
Downloaded clap v2.34.0
Downloaded parse-zoneinfo v0.3.0
Downloaded crossbeam-deque v0.8.1
Downloaded chrono v0.4.19
Downloaded static_assertions v1.1.0
Downloaded socket2 v0.3.19
Downloaded signature v1.5.0
Downloaded serde v1.0.136
Downloaded parity-scale-codec-derive v2.3.1
Downloaded getrandom v0.1.16
Downloaded chrono-tz-build v0.0.2
Downloaded env_logger v0.9.0
Downloaded untrusted v0.7.1
Downloaded fnv v1.0.7
Downloaded num-integer v0.1.44
Downloaded unic-common v0.9.0
Downloaded heck v0.3.3
Downloaded unic-char-range v0.9.0
Downloaded serde_yaml v0.8.23
Downloaded sha3 v0.8.2
Downloaded signal-hook v0.3.13
Downloaded time v0.1.43
Downloaded thiserror v1.0.30
Downloaded tera v1.15.0
Downloaded textwrap v0.11.0
Downloaded crunchy v0.2.2
Downloaded evm-runtime v0.33.0
Downloaded foreign-types v0.3.2
Downloaded bstr v0.2.17
Downloaded crossterm v0.22.1
Downloaded evm-gasometer v0.33.0
Downloaded tinyvec_macros v0.1.0
Downloaded num_cpus v1.13.1
Downloaded vec_map v0.8.2
Downloaded variant_count v1.1.0
Downloaded unic-ucd-version v0.9.0
Downloaded unicase v2.6.0
Downloaded openssl v0.10.38
Downloaded httparse v1.6.0
Downloaded try-lock v0.2.3
Downloaded tokio-macros v1.7.0
Downloaded tracing v0.1.32
Downloaded typed-arena v2.0.1
Downloaded twox-hash v1.6.2
Downloaded hex v0.4.3
Downloaded fixed-hash v0.7.0
Downloaded unicode-width v0.1.9
Downloaded hashbrown v0.12.0
Downloaded hashbrown v0.11.2
Downloaded ethereum-types v0.12.1
Downloaded either v1.6.1
Downloaded impl-trait-for-tuples v0.2.2
Downloaded libc v0.2.120
Downloaded triehash v0.8.4
Downloaded num-iter v0.1.42
Downloaded futures-channel v0.3.21
Downloaded typenum v1.15.0
Downloaded nodrop v0.1.14
Downloaded tower-service v0.3.1
Downloaded toml v0.5.8
Downloaded tokio-util v0.3.1
Downloaded dashmap v5.2.0
Downloaded tokio-tls v0.3.1
Downloaded net2 v0.2.37
Downloaded named-lock v0.1.1
Downloaded unicode-xid v0.2.2
Downloaded opaque-debug v0.2.3
Downloaded humansize v1.1.1
Downloaded unicode-normalization v0.1.19
Downloaded unicode-bidi v0.3.7
Downloaded lazy_static v0.2.11
Downloaded unicode-segmentation v1.9.0
Downloaded openssl-sys v0.9.72
Downloaded unicode-xid v0.1.0
Downloaded num-traits v0.1.43
Downloaded ethbloom v0.11.1
Downloaded num v0.4.0
Downloaded lazy_static v1.4.0
Downloaded environmental v1.1.3
Downloaded unic-char-property v0.9.0
Downloaded url v2.2.2
Downloaded lexical-core v0.7.6
Downloaded ucd-trie v0.1.3
Downloaded uncased v0.9.6
Downloaded funty v1.1.0
Downloaded tokio v0.2.25
Downloaded ordered-float v2.10.0
Downloaded once_cell v1.10.0
Downloaded httpdate v0.3.2
Downloaded http v0.2.6
Downloaded derive_more v0.99.17
Downloaded memoffset v0.6.5
Downloaded include_dir_impl v0.6.2
Downloaded evm-core v0.33.0
Downloaded hyper-tls v0.4.3
Downloaded mime v0.3.16
Downloaded ethereum v0.11.1
Downloaded hyper v0.13.10
Downloaded directories v4.0.1
Downloaded idna v0.2.3
Downloaded opaque-debug v0.3.0
Downloaded openssl-probe v0.1.5
Downloaded mio v0.6.23
Downloaded percent-encoding v2.1.0
Downloaded diem-crypto v0.0.3
Downloaded parking_lot v0.10.2
Downloaded parity-scale-codec v2.3.1
Downloaded ouroboros_macro v0.9.5
Downloaded fastrand v1.7.0
Downloaded ethnum v1.1.1
Downloaded evm v0.33.1
Downloaded curve25519-dalek-fiat v0.1.0
Downloaded ctr v0.6.0
Downloaded http-body v0.3.1
Downloaded hmac v0.10.1
Downloaded num-rational v0.4.0
Downloaded ed25519-dalek-fiat v0.1.0
Downloaded dirs v4.0.0
Downloaded mio v0.7.14
Downloaded dyn-clone v1.0.5
Downloaded diem-crypto-derive v0.0.3
Downloaded crypto-mac v0.10.1
Downloaded fiat-crypto v0.1.11
Downloaded foreign-types-shared v0.1.1
Downloaded tokio v1.17.0
Downloaded parking_lot_core v0.8.5
Downloaded mime_guess v2.0.4
Downloaded humantime v2.1.0
Downloaded futures-executor v0.3.21
Downloaded futures-core v0.3.21
Downloaded fixedbitset v0.2.0
Downloaded tui v0.17.0
Downloaded dirs-sys v0.3.6
Downloaded uint v0.9.3
Downloaded num-bigint v0.4.3
Downloaded ring v0.16.20
Downloaded keccak v0.1.0
Downloaded encoding_rs v0.8.30
Downloaded mio v0.8.1
Downloaded hkdf v0.10.0
Downloaded native-tls v0.2.8
Downloaded ed25519 v1.4.0
Downloaded nom v5.1.2
Downloaded impl-codec v0.5.1
Downloaded im v15.0.0
Downloaded tracing-attributes v0.1.20
Downloaded tracing-core v0.1.23
Downloaded getrandom v0.2.5
Downloaded form_urlencoded v1.0.1
Downloaded chrono-tz v0.6.1
Downloaded itoa v0.4.8
Downloaded impl-rlp v0.3.0
Downloaded deunicode v0.4.3
Downloaded unic-ucd-segment v0.9.0
Downloaded unic-segment v0.9.0
Downloaded num-traits v0.2.14
Downloaded tracing-futures v0.2.5
Downloaded num-complex v0.4.0
Downloaded include_dir v0.6.2
Downloaded ignore v0.4.18
Downloaded futures v0.3.21
Downloaded fixedbitset v0.4.1
Downloaded difference v2.0.0
Downloaded block-modes v0.8.1
Downloaded cassowary v0.3.0
Downloaded futures-task v0.3.21
Downloaded digest v0.9.0
Downloaded digest v0.8.1
Downloaded codespan-reporting v0.11.1
Downloaded base64 v0.13.0
Downloaded serde v0.8.23
Downloaded semver v1.0.6
Downloaded parking_lot_core v0.7.2
Downloaded crossbeam-utils v0.8.8
Downloaded config v0.11.0
Downloaded byte-slice-cast v1.2.1
Downloaded bitvec v0.20.4
Downloaded ref-cast-impl v1.0.6
Downloaded cpufeatures v0.2.1
Downloaded constant_time_eq v0.1.5
Downloaded cipher v0.2.5
Downloaded serde_json v1.0.79
Downloaded cfg-if v1.0.0
Downloaded block-padding v0.2.1
Downloaded block-buffer v0.9.0
Downloaded block-buffer v0.7.3
Downloaded bitflags v1.3.2
Downloaded autocfg v1.1.0
Downloaded atty v0.2.14
Downloaded arrayvec v0.5.2
Downloaded aes-soft v0.6.4
Downloaded rand v0.7.3
Downloaded version_check v0.9.4
Downloaded syn v1.0.89
Downloaded rustc-hex v2.1.0
Downloaded spin v0.5.2
Downloaded siphasher v0.3.10
Downloaded signal-hook-registry v1.4.0
Downloaded sha2 v0.9.9
Downloaded sha-1 v0.8.2
Downloaded same-file v1.0.6
Downloaded rust-base58 v0.0.4
Downloaded rlp v0.5.1
Downloaded reqwest v0.10.10
Downloaded polyval v0.4.5
Downloaded mirai-annotations v1.12.0
Downloaded lockfile v0.3.0
Downloaded crossterm v0.21.0
Downloaded pin-project-internal v1.0.10
Downloaded petgraph v0.5.1
Downloaded regex-automata v0.1.10
Downloaded rand_chacha v0.3.1
Downloaded pest_meta v2.1.3
Downloaded pest_generator v2.1.3
Downloaded pest_derive v2.1.0
Downloaded pest v2.1.3
Downloaded parking_lot v0.12.0
Downloaded parking_lot v0.11.2
Downloaded matches v0.1.9
Downloaded maplit v1.0.2
Downloaded lock_api v0.4.6
Downloaded phf_generator v0.10.0
Downloaded plotters v0.3.1
Downloaded libloading v0.7.3
Downloaded globwalk v0.8.1
Downloaded ghash v0.3.1
Compiling proc-macro2 v1.0.36
Compiling unicode-xid v0.2.2
Compiling syn v1.0.89
Compiling libc v0.2.120
Compiling version_check v0.9.4
Checking cfg-if v1.0.0
Compiling serde_derive v1.0.136
Compiling serde v1.0.136
{"reason":"compiler-artifact","package_id":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg-if","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libcfg_if-a877c59c95056883.rmeta"],"executable":null,"fresh":false}
Compiling autocfg v1.1.0
{"reason":"compiler-artifact","package_id":"unicode-xid 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode-xid","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/deps/libunicode_xid-327a5a2c82ff7735.rlib","/opt/dove/target/debug/deps/libunicode_xid-327a5a2c82ff7735.rmeta"],"executable":null,"fresh":false}
Compiling typenum v1.15.0
{"reason":"compiler-artifact","package_id":"version_check 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"version_check","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.4/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libversion_check-3b7744506a27aba2.rlib","/opt/dove/target/debug/deps/libversion_check-3b7744506a27aba2.rmeta"],"executable":null,"fresh":false}
Compiling memchr v2.4.1
{"reason":"compiler-artifact","package_id":"autocfg 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"autocfg","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libautocfg-e0444ab87d2e0cd3.rlib","/opt/dove/target/debug/deps/libautocfg-e0444ab87d2e0cd3.rmeta"],"executable":null,"fresh":false}
Compiling log v0.4.14
{"reason":"compiler-artifact","package_id":"memchr 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.4.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.4.1/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","use_std"],"filenames":["/opt/dove/target/debug/build/memchr-591c33ed83d06021/build-script-build"],"executable":null,"fresh":false}
Checking lazy_static v1.4.0
{"reason":"compiler-artifact","package_id":"log 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.14/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.14/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["serde","std"],"filenames":["/opt/dove/target/debug/build/log-4151895b4ff6cc64/build-script-build"],"executable":null,"fresh":false}
Checking ppv-lite86 v0.2.16
{"reason":"compiler-artifact","package_id":"serde_derive 1.0.136 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.136/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.136/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/build/serde_derive-785d2c9e58d3d2b0/build-script-build"],"executable":null,"fresh":false}
Checking bytes v1.1.0
{"reason":"compiler-artifact","package_id":"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lazy_static","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/liblazy_static-bf906c7127360d0f.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"syn 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.89/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.89/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","quote","visit","visit-mut"],"filenames":["/opt/dove/target/debug/build/syn-5e790c702f0c268a/build-script-build"],"executable":null,"fresh":false}
Compiling crunchy v0.2.2
{"reason":"compiler-artifact","package_id":"ppv-lite86 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ppv-lite86","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd","std"],"filenames":["/opt/dove/target/debug/deps/libppv_lite86-254c458ddef06678.rmeta"],"executable":null,"fresh":false}
Checking static_assertions v1.1.0
{"reason":"compiler-artifact","package_id":"serde 1.0.136 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.136/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.136/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","derive","rc","serde_derive","std"],"filenames":["/opt/dove/target/debug/build/serde-9555c9f78a37883b/build-script-build"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"bytes 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytes","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/bytes-1.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libbytes-6086de8a135132d3.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg-if","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libcfg_if-fe49d91d94d33add.rlib","/opt/dove/target/debug/deps/libcfg_if-fe49d91d94d33add.rmeta"],"executable":null,"fresh":false}
Checking byteorder v1.4.3
Compiling radium v0.6.2
Checking rustc-hex v2.1.0
{"reason":"compiler-artifact","package_id":"libc 0.2.120 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.120/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.120/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["align","default","std"],"filenames":["/opt/dove/target/debug/build/libc-99c624ae078d9621/build-script-build"],"executable":null,"fresh":false}
Checking funty v1.1.0
{"reason":"compiler-artifact","package_id":"proc-macro2 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.36/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.36/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/opt/dove/target/debug/build/proc-macro2-87f9e2979f25d088/build-script-build"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"static_assertions","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libstatic_assertions-447301d7f48106bf.rmeta"],"executable":null,"fresh":false}
Checking tap v1.0.1
Checking wyz v0.2.0
{"reason":"compiler-artifact","package_id":"byteorder 1.4.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.4.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byteorder","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.4.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","i128","std"],"filenames":["/opt/dove/target/debug/deps/libbyteorder-281d31c293007430.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"rustc-hex 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rustc-hex-2.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustc-hex","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rustc-hex-2.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/librustc_hex-fc9b086bdae7ec17.rmeta"],"executable":null,"fresh":false}
Checking once_cell v1.10.0
Checking opaque-debug v0.3.0
{"reason":"compiler-artifact","package_id":"tap 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tap-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tap","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tap-1.0.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libtap-c8d8c5b0f017194f.rmeta"],"executable":null,"fresh":false}
Checking arrayvec v0.7.2
{"reason":"compiler-artifact","package_id":"wyz 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/wyz-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wyz","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/wyz-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc"],"filenames":["/opt/dove/target/debug/deps/libwyz-8b03d7f197b44403.rmeta"],"executable":null,"fresh":false}
Checking regex-syntax v0.6.25
{"reason":"compiler-artifact","package_id":"funty 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/funty-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"funty","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/funty-1.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libfunty-5ee707b1d8d9e246.rmeta"],"executable":null,"fresh":false}
Checking byte-slice-cast v1.2.1
{"reason":"compiler-artifact","package_id":"opaque-debug 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"opaque-debug","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libopaque_debug-36b479e801dbec74.rmeta"],"executable":null,"fresh":false}
Compiling crossbeam-utils v0.8.8
{"reason":"compiler-artifact","package_id":"once_cell 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.10.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"once_cell","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.10.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","race","std"],"filenames":["/opt/dove/target/debug/deps/libonce_cell-450b39257ce3ad1b.rmeta"],"executable":null,"fresh":false}
Compiling tiny-keccak v2.0.2
{"reason":"compiler-artifact","package_id":"arrayvec 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arrayvec","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.7.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libarrayvec-f74eeae2f5ea38e7.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"byte-slice-cast 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/byte-slice-cast-1.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byte-slice-cast","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/byte-slice-cast-1.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libbyte_slice_cast-317e0a36d1227178.rmeta"],"executable":null,"fresh":false}
Checking hex v0.4.3
{"reason":"compiler-artifact","package_id":"hex 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hex","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/opt/dove/target/debug/deps/libhex-cb0bfe28ef762599.rmeta"],"executable":null,"fresh":false}
Compiling getrandom v0.1.16
{"reason":"compiler-artifact","package_id":"regex-syntax 0.6.25 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.25/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex-syntax","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.25/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["/opt/dove/target/debug/deps/libregex_syntax-44b197e1ba716b95.rmeta"],"executable":null,"fresh":false}
Checking block-padding v0.2.1
{"reason":"compiler-artifact","package_id":"typenum 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.15.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-main","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.15.0/build/main.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/typenum-8b03aff22b5c3320/build-script-main"],"executable":null,"fresh":false}
Compiling proc-macro2 v0.4.30
{"reason":"compiler-artifact","package_id":"block-padding 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/block-padding-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block-padding","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/block-padding-0.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libblock_padding-b7fa5883bbc47db9.rmeta"],"executable":null,"fresh":false}
Checking byte-tools v0.3.1
{"reason":"compiler-artifact","package_id":"byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/byte-tools-0.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byte-tools","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/byte-tools-0.3.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libbyte_tools-8cac1970447168de.rmeta"],"executable":null,"fresh":false}
Checking unicode-width v0.1.9
{"reason":"compiler-artifact","package_id":"unicode-width 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode-width","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.9/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/deps/libunicode_width-dedf9231a705c371.rmeta"],"executable":null,"fresh":false}
Checking keccak v0.1.0
{"reason":"compiler-artifact","package_id":"keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/keccak-0.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"keccak","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/keccak-0.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libkeccak-d444e61705c8c932.rmeta"],"executable":null,"fresh":false}
Checking arrayvec v0.5.2
{"reason":"compiler-artifact","package_id":"arrayvec 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arrayvec","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["array-sizes-33-128","default","std"],"filenames":["/opt/dove/target/debug/deps/libarrayvec-3458f346ae773d5d.rmeta"],"executable":null,"fresh":false}
Compiling unicode-xid v0.1.0
{"reason":"compiler-artifact","package_id":"regex-syntax 0.6.25 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.25/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex-syntax","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.25/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["/opt/dove/target/debug/deps/libregex_syntax-54a120aa31f8ec85.rlib","/opt/dove/target/debug/deps/libregex_syntax-54a120aa31f8ec85.rmeta"],"executable":null,"fresh":false}
Compiling anyhow v1.0.56
{"reason":"compiler-artifact","package_id":"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode-xid","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/deps/libunicode_xid-6bcb62926005857e.rlib","/opt/dove/target/debug/deps/libunicode_xid-6bcb62926005857e.rmeta"],"executable":null,"fresh":false}
Compiling syn v0.15.44
{"reason":"compiler-artifact","package_id":"tiny-keccak 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tiny-keccak-2.0.2/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tiny-keccak-2.0.2/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","keccak","sha3"],"filenames":["/opt/dove/target/debug/build/tiny-keccak-f986597163db07e2/build-script-build"],"executable":null,"fresh":false}
Checking opaque-debug v0.2.3
{"reason":"compiler-artifact","package_id":"opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.2.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"opaque-debug","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.2.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libopaque_debug-293ebc23a7705ad7.rmeta"],"executable":null,"fresh":false}
Checking termcolor v1.1.3
{"reason":"compiler-artifact","package_id":"termcolor 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.1.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"termcolor","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.1.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libtermcolor-76c7a149b4a80f5b.rmeta"],"executable":null,"fresh":false}
Checking environmental v1.1.3
{"reason":"compiler-artifact","package_id":"crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.2.2/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.2.2/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","limit_128","limit_256","std"],"filenames":["/opt/dove/target/debug/build/crunchy-56931310351bc1f5/build-script-build"],"executable":null,"fresh":false}
Checking hash-db v0.15.2
{"reason":"compiler-artifact","package_id":"environmental 1.1.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/environmental-1.1.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"environmental","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/environmental-1.1.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libenvironmental-3464e67f6c87350c.rmeta"],"executable":null,"fresh":false}
Checking plotters-backend v0.3.2
{"reason":"compiler-artifact","package_id":"radium 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/radium-0.6.2/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/radium-0.6.2/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/radium-52fe78c382bb8582/build-script-build"],"executable":null,"fresh":false}
Compiling ref-cast v1.0.6
{"reason":"compiler-artifact","package_id":"hash-db 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hash-db-0.15.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hash-db","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hash-db-0.15.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libhash_db-01518a3156e9c61d.rmeta"],"executable":null,"fresh":false}
Checking mirai-annotations v1.12.0
{"reason":"compiler-artifact","package_id":"plotters-backend 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/plotters-backend-0.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"plotters-backend","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/plotters-backend-0.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libplotters_backend-a45754753a31613c.rmeta"],"executable":null,"fresh":false}
Checking bitflags v1.3.2
{"reason":"compiler-artifact","package_id":"crossbeam-utils 0.8.8 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.8/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.8/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","lazy_static","std"],"filenames":["/opt/dove/target/debug/build/crossbeam-utils-58b6462124507ee6/build-script-build"],"executable":null,"fresh":false}
Checking scopeguard v1.1.0
{"reason":"compiler-artifact","package_id":"mirai-annotations 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/mirai-annotations-1.12.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mirai-annotations","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/mirai-annotations-1.12.0/src/lib.rs","edition":"2018","doc":true,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libmirai_annotations-1c83352bac0b7260.rmeta"],"executable":null,"fresh":false}
Checking hashbrown v0.11.2
{"reason":"compiler-artifact","package_id":"bitflags 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/deps/libbitflags-c56f6f758cba9a9b.rmeta"],"executable":null,"fresh":false}
Checking smallvec v1.8.0
{"reason":"compiler-artifact","package_id":"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scopeguard","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libscopeguard-da24c4dbc772bea5.rmeta"],"executable":null,"fresh":false}
Checking same-file v1.0.6
{"reason":"compiler-artifact","package_id":"hashbrown 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.11.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["raw"],"filenames":["/opt/dove/target/debug/deps/libhashbrown-eb2aef2f4434475e.rmeta"],"executable":null,"fresh":false}
Checking fixedbitset v0.2.0
{"reason":"compiler-artifact","package_id":"same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"same-file","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libsame_file-e0c56e614cb0baf4.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"smallvec 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smallvec","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.8.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libsmallvec-938cb25334bf7181.rmeta"],"executable":null,"fresh":false}
Checking difference v2.0.0
Checking itoa v1.0.1
{"reason":"compiler-artifact","package_id":"fixedbitset 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/fixedbitset-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fixedbitset","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/fixedbitset-0.2.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libfixedbitset-0bc7038f1c32d850.rmeta"],"executable":null,"fresh":false}
Compiling arrayvec v0.4.12
{"reason":"compiler-artifact","package_id":"difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/difference-2.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"difference","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/difference-2.0.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/deps/libdifference-228200bdac063f4f.rmeta"],"executable":null,"fresh":false}
Checking ryu v1.0.9
{"reason":"compiler-artifact","package_id":"itoa 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/itoa-1.0.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libitoa-9a95bb912ae63699.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"getrandom 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.16/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.16/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/build/getrandom-7c04fa1f22afe665/build-script-build"],"executable":null,"fresh":false}
Checking ansi_term v0.12.1
Compiling unicode-segmentation v1.9.0
{"reason":"compiler-artifact","package_id":"ryu 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ryu","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.9/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libryu-a5c717f59ec69575.rmeta"],"executable":null,"fresh":false}
Compiling parking_lot_core v0.9.1
{"reason":"compiler-artifact","package_id":"ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.12.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ansi_term","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.12.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libansi_term-cb2d66294ac67e11.rmeta"],"executable":null,"fresh":false}
Compiling Inflector v0.11.4
{"reason":"compiler-artifact","package_id":"unicode-segmentation 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode-segmentation","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libunicode_segmentation-efd8a443ca771c96.rlib","/opt/dove/target/debug/deps/libunicode_segmentation-efd8a443ca771c96.rmeta"],"executable":null,"fresh":false}
Checking strsim v0.8.0
{"reason":"compiler-artifact","package_id":"Inflector 0.11.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"inflector","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libinflector-dddab7495989fe84.rlib","/opt/dove/target/debug/deps/libinflector-dddab7495989fe84.rmeta"],"executable":null,"fresh":false}
Checking vec_map v0.8.2
{"reason":"compiler-artifact","package_id":"strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"strsim","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.8.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libstrsim-6b226b01a7d32ddb.rmeta"],"executable":null,"fresh":false}
Checking nodrop v0.1.14
{"reason":"compiler-artifact","package_id":"vec_map 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"vec_map","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libvec_map-d92deeaae75fb00e.rmeta"],"executable":null,"fresh":false}
Checking fastrand v1.7.0
{"reason":"compiler-artifact","package_id":"nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/nodrop-0.1.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nodrop","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/nodrop-0.1.14/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libnodrop-ee5e9798cd1b574f.rmeta"],"executable":null,"fresh":false}
Checking stable_deref_trait v1.2.0
{"reason":"compiler-artifact","package_id":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/opt/dove/target/debug/build/proc-macro2-d83a423c371fb250/build-script-build"],"executable":null,"fresh":false}
Checking remove_dir_all v0.5.3
{"reason":"compiler-artifact","package_id":"fastrand 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.7.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/fastrand-1.7.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libfastrand-1b55c8570189e964.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"stable_deref_trait 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/stable_deref_trait-1.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stable_deref_trait","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/stable_deref_trait-1.2.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/opt/dove/target/debug/deps/libstable_deref_trait-516db89f60fcacb5.rmeta"],"executable":null,"fresh":false}
Checking constant_time_eq v0.1.5
Compiling futures-core v0.3.21
{"reason":"compiler-artifact","package_id":"remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"remove_dir_all","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libremove_dir_all-287116bc331a9855.rmeta"],"executable":null,"fresh":false}
Checking pin-project-lite v0.2.8
{"reason":"compiler-artifact","package_id":"constant_time_eq 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/constant_time_eq-0.1.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"constant_time_eq","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/constant_time_eq-0.1.5/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libconstant_time_eq-f23f290b9e2f1758.rmeta"],"executable":null,"fresh":false}
Compiling serde_json v1.0.79
{"reason":"compiler-artifact","package_id":"pin-project-lite 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.2.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin-project-lite","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.2.8/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libpin_project_lite-24fd6d9f7d680d22.rmeta"],"executable":null,"fresh":false}
Checking fnv v1.0.7
{"reason":"compiler-artifact","package_id":"fnv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fnv","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libfnv-2bfb357484dcf62f.rmeta"],"executable":null,"fresh":false}
Checking bech32 v0.7.3
{"reason":"compiler-artifact","package_id":"bech32 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/bech32-0.7.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bech32","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/bech32-0.7.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libbech32-ce88f7a610969263.rmeta"],"executable":null,"fresh":false}
Checking either v1.6.1
{"reason":"compiler-artifact","package_id":"either 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"either","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libeither-0338e1d3cc2172dc.rmeta"],"executable":null,"fresh":false}
Checking slab v0.4.5
{"reason":"compiler-artifact","package_id":"anyhow 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.56/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.56/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/build/anyhow-b3dc706620106a12/build-script-build"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","extra-traits","full","parsing","printing","proc-macro","quote","visit"],"filenames":["/opt/dove/target/debug/build/syn-217356c5fde3d210/build-script-build"],"executable":null,"fresh":false}
Checking futures-sink v0.3.21
Checking cfg-if v0.1.10
{"reason":"compiler-artifact","package_id":"slab 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libslab-f726549390e9790b.rmeta"],"executable":null,"fresh":false}
Checking subtle v2.4.1
{"reason":"compiler-artifact","package_id":"futures-sink 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures-sink","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.21/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/opt/dove/target/debug/deps/libfutures_sink-5490190abbba4a58.rmeta"],"executable":null,"fresh":false}
Compiling futures-task v0.3.21
{"reason":"compiler-artifact","package_id":"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg-if","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libcfg_if-acd5fb7d023be052.rmeta"],"executable":null,"fresh":false}
Compiling futures-channel v0.3.21
{"reason":"compiler-artifact","package_id":"subtle 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"subtle","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/subtle-2.4.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libsubtle-65768619052773ee.rmeta"],"executable":null,"fresh":false}
Compiling parking_lot_core v0.8.5
{"reason":"compiler-artifact","package_id":"ref-cast 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ref-cast-1.0.6/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ref-cast-1.0.6/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/ref-cast-d7cb129f132ea423/build-script-build"],"executable":null,"fresh":false}
Compiling futures-util v0.3.21
{"reason":"compiler-artifact","package_id":"parking_lot_core 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.9.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.9.1/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/parking_lot_core-30627cf9c004b12f/build-script-build"],"executable":null,"fresh":false}
Checking pin-utils v0.1.0
{"reason":"compiler-artifact","package_id":"pin-utils 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pin-utils-0.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin-utils","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pin-utils-0.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libpin_utils-a73173b2727e6a1a.rmeta"],"executable":null,"fresh":false}
Checking futures-io v0.3.21
{"reason":"compiler-artifact","package_id":"futures-io 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-io-0.3.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures-io","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-io-0.3.21/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libfutures_io-ffd2466cf4598163.rmeta"],"executable":null,"fresh":false}
Compiling cc v1.0.73
{"reason":"compiler-artifact","package_id":"arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.4.12/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.4.12/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/arrayvec-4e339b24023b12c7/build-script-build"],"executable":null,"fresh":false}
Compiling siphasher v0.3.10
{"reason":"compiler-artifact","package_id":"futures-core 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.21/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.21/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/opt/dove/target/debug/build/futures-core-45a2252afe94f6ae/build-script-build"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"siphasher 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/siphasher-0.3.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/siphasher-0.3.10/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libsiphasher-176dd2d557e537ed.rlib","/opt/dove/target/debug/deps/libsiphasher-176dd2d557e537ed.rmeta"],"executable":null,"fresh":false}
Compiling paste v1.0.6
{"reason":"compiler-artifact","package_id":"cc 1.0.73 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.73/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cc","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.73/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libcc-3205cfe5d1eecbb3.rlib","/opt/dove/target/debug/deps/libcc-3205cfe5d1eecbb3.rmeta"],"executable":null,"fresh":false}
Checking percent-encoding v2.1.0
{"reason":"compiler-artifact","package_id":"ppv-lite86 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ppv-lite86","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd","std"],"filenames":["/opt/dove/target/debug/deps/libppv_lite86-a2b8cbfa4395e09b.rlib","/opt/dove/target/debug/deps/libppv_lite86-a2b8cbfa4395e09b.rmeta"],"executable":null,"fresh":false}
Checking ethnum v1.1.1
{"reason":"compiler-artifact","package_id":"percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"percent-encoding","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.1.0/lib.rs","edition":"2015","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libpercent_encoding-250e9669506cb2a3.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"ethnum 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ethnum-1.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ethnum","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ethnum-1.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libethnum-e2c1c8f75f6f6095.rmeta"],"executable":null,"fresh":false}
Compiling pkg-config v0.3.24
{"reason":"compiler-artifact","package_id":"unicode-segmentation 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode-segmentation","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libunicode_segmentation-3ea31eab95cfb22b.rmeta"],"executable":null,"fresh":false}
Compiling ucd-trie v0.1.3
{"reason":"compiler-artifact","package_id":"serde_json 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.79/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.79/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/build/serde_json-e7247668e07f9321/build-script-build"],"executable":null,"fresh":false}
Checking fiat-crypto v0.1.11
{"reason":"compiler-artifact","package_id":"futures-channel 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.21/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.21/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","futures-sink","sink","std"],"filenames":["/opt/dove/target/debug/build/futures-channel-d18f034263670494/build-script-build"],"executable":null,"fresh":false}
Compiling lexical-core v0.7.6
{"reason":"compiler-artifact","package_id":"futures-task 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.21/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.21/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/opt/dove/target/debug/build/futures-task-be9cb39a97e559d7/build-script-build"],"executable":null,"fresh":false}
Checking unic-common v0.9.0
{"reason":"compiler-artifact","package_id":"parking_lot_core 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.8.5/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.8.5/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/parking_lot_core-2f3a4600a03b70a9/build-script-build"],"executable":null,"fresh":false}
Compiling maplit v1.0.2
{"reason":"compiler-artifact","package_id":"unic-common 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unic-common-0.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic-common","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unic-common-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/deps/libunic_common-3b31e2a3a5d98b95.rmeta"],"executable":null,"fresh":false}
Checking unic-char-range v0.9.0
{"reason":"compiler-artifact","package_id":"ucd-trie 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ucd-trie-0.1.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ucd-trie","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ucd-trie-0.1.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libucd_trie-b156af153b025b30.rlib","/opt/dove/target/debug/deps/libucd_trie-b156af153b025b30.rmeta"],"executable":null,"fresh":false}
Checking bytes v0.5.6
{"reason":"compiler-artifact","package_id":"maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/maplit-1.0.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"maplit","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/maplit-1.0.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libmaplit-e469a02be2bd2d90.rlib","/opt/dove/target/debug/deps/libmaplit-e469a02be2bd2d90.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"pkg-config 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.24/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pkg-config","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pkg-config-0.3.24/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libpkg_config-47baaa03e58a2f28.rlib","/opt/dove/target/debug/deps/libpkg_config-47baaa03e58a2f28.rmeta"],"executable":null,"fresh":false}
Checking linked-hash-map v0.5.4
{"reason":"compiler-artifact","package_id":"unic-char-range 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unic-char-range-0.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic-char-range","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unic-char-range-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/deps/libunic_char_range-f898e6679b024a60.rmeta"],"executable":null,"fresh":false}
Checking pin-project-lite v0.1.12
{"reason":"compiler-artifact","package_id":"bytes 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytes","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libbytes-a557a843293e10d7.rmeta"],"executable":null,"fresh":false}
Checking signature v1.5.0
{"reason":"compiler-artifact","package_id":"linked-hash-map 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"linked-hash-map","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/linked-hash-map-0.5.4/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/liblinked_hash_map-ed0af23286dbca98.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"siphasher 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/siphasher-0.3.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/siphasher-0.3.10/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libsiphasher-c8ec3f67d87df21d.rmeta"],"executable":null,"fresh":false}
Checking foreign-types-shared v0.1.1
Checking tinyvec_macros v0.1.0
{"reason":"compiler-artifact","package_id":"pin-project-lite 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin-project-lite","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libpin_project_lite-9f4bb35ed3308dcd.rmeta"],"executable":null,"fresh":false}
Checking deunicode v0.4.3
{"reason":"compiler-artifact","package_id":"signature 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/signature-1.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"signature","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/signature-1.5.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libsignature-2a876a0bc540bc79.rmeta"],"executable":null,"fresh":false}
Compiling async-trait v0.1.52
{"reason":"compiler-artifact","package_id":"tinyvec_macros 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec_macros-0.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec_macros","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec_macros-0.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libtinyvec_macros-f8163885997be5b8.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-shared-0.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"foreign-types-shared","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-shared-0.1.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libforeign_types_shared-6678a91416d07f66.rmeta"],"executable":null,"fresh":false}
Checking matches v0.1.9
Compiling signal-hook v0.3.13
{"reason":"compiler-artifact","package_id":"deunicode 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/deunicode-0.4.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"deunicode","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/deunicode-0.4.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libdeunicode-1e6e61b526263b80.rmeta"],"executable":null,"fresh":false}
Compiling openssl v0.10.38
{"reason":"compiler-artifact","package_id":"fiat-crypto 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/fiat-crypto-0.1.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fiat-crypto","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/fiat-crypto-0.1.11/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libfiat_crypto-9f066965140841a0.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"matches 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/matches-0.1.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"matches","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/matches-0.1.9/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libmatches-8d4780358cd75b08.rmeta"],"executable":null,"fresh":false}
Checking serde v0.8.23
{"reason":"compiler-artifact","package_id":"ucd-trie 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ucd-trie-0.1.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ucd-trie","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ucd-trie-0.1.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libucd_trie-fccf2320de1493f3.rmeta"],"executable":null,"fresh":false}
Compiling httparse v1.6.0
{"reason":"compiler-artifact","package_id":"serde 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.8.23/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libserde-45cbbc61becee2e3.rmeta"],"executable":null,"fresh":false}
Checking typed-arena v2.0.1
{"reason":"compiler-artifact","package_id":"typed-arena 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/typed-arena-2.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typed_arena","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/typed-arena-2.0.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libtyped_arena-4b62aa674b722912.rmeta"],"executable":null,"fresh":false}
Checking fixedbitset v0.4.1
{"reason":"compiler-artifact","package_id":"fixedbitset 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/fixedbitset-0.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fixedbitset","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/fixedbitset-0.4.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libfixedbitset-61aac71ca2d5469d.rmeta"],"executable":null,"fresh":false}
Checking humansize v1.1.1
{"reason":"compiler-artifact","package_id":"humansize 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/humansize-1.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"humansize","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/humansize-1.1.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libhumansize-e2d14d0697e06699.rmeta"],"executable":null,"fresh":false}
Checking rust-ini v0.13.0
{"reason":"compiler-artifact","package_id":"rust-ini 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rust-ini-0.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ini","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rust-ini-0.13.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libini-cae2e76e6a47718c.rmeta"],"executable":null,"fresh":false}
Checking lazy_static v0.2.11
{"reason":"compiler-artifact","package_id":"futures-util 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.21/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.21/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","async-await","async-await-macro","channel","futures-channel","futures-io","futures-macro","futures-sink","io","memchr","sink","slab","std"],"filenames":["/opt/dove/target/debug/build/futures-util-eb7072ef43ee103f/build-script-build"],"executable":null,"fresh":false}
Compiling native-tls v0.2.8
{"reason":"compiler-artifact","package_id":"lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lazy_static","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-0.2.11/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/liblazy_static-407446b5a03c38b7.rmeta"],"executable":null,"fresh":false}
Compiling rayon-core v1.9.1
{"reason":"compiler-artifact","package_id":"lexical-core 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.6/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.6/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["arrayvec","correct","default","ryu","static_assertions","std","table"],"filenames":["/opt/dove/target/debug/build/lexical-core-5a61d55d491e42f8/build-script-build"],"executable":null,"fresh":false}
Checking openssl-probe v0.1.5
{"reason":"compiler-artifact","package_id":"signal-hook 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/signal-hook-0.3.13/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/signal-hook-0.3.13/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["channel","default","iterator"],"filenames":["/opt/dove/target/debug/build/signal-hook-9b35c04e2fbfac4c/build-script-build"],"executable":null,"fresh":false}
Checking try-lock v0.2.3
{"reason":"compiler-artifact","package_id":"openssl-probe 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/openssl-probe-0.1.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"openssl-probe","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/openssl-probe-0.1.5/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libopenssl_probe-ebb294cb684247e6.rmeta"],"executable":null,"fresh":false}
Checking unicode-bidi v0.3.7
{"reason":"compiler-artifact","package_id":"try-lock 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/try-lock-0.2.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"try-lock","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/try-lock-0.2.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libtry_lock-f6b981574a7ba3f7.rmeta"],"executable":null,"fresh":false}
Checking itoa v0.4.8
{"reason":"compiler-artifact","package_id":"unicode-bidi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_bidi","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libunicode_bidi-47917ef3ac55c131.rmeta"],"executable":null,"fresh":false}
Checking tower-service v0.3.1
{"reason":"compiler-artifact","package_id":"itoa 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.8/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libitoa-80952f39ffe76c39.rmeta"],"executable":null,"fresh":false}
Compiling proc-macro-hack v0.5.19
{"reason":"compiler-artifact","package_id":"tower-service 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tower-service-0.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower-service","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tower-service-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libtower_service-f3df22f4bcdd18c8.rmeta"],"executable":null,"fresh":false}
Checking httpdate v0.3.2
{"reason":"compiler-artifact","package_id":"httpdate 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/httpdate-0.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"httpdate","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/httpdate-0.3.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libhttpdate-08f4c5ef4fecba0e.rmeta"],"executable":null,"fresh":false}
Compiling encoding_rs v0.8.30
{"reason":"compiler-artifact","package_id":"openssl 0.10.38 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.38/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.38/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/openssl-12d53c1c2638d76b/build-script-build"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"httparse 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.6.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.6.0/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/build/httparse-c6d13b4e470ad2aa/build-script-build"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"block-padding 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/block-padding-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block-padding","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/block-padding-0.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libblock_padding-d0f20a102fcec112.rlib","/opt/dove/target/debug/deps/libblock_padding-d0f20a102fcec112.rmeta"],"executable":null,"fresh":false}
Checking mime v0.3.16
{"reason":"compiler-artifact","package_id":"async-trait 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.52/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/async-trait-0.1.52/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/async-trait-8e454c5dead9a649/build-script-build"],"executable":null,"fresh":false}
Checking ipnet v2.4.0
{"reason":"compiler-artifact","package_id":"opaque-debug 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"opaque-debug","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libopaque_debug-2f0fe951f54f8511.rlib","/opt/dove/target/debug/deps/libopaque_debug-2f0fe951f54f8511.rmeta"],"executable":null,"fresh":false}
Checking cassowary v0.3.0
{"reason":"compiler-artifact","package_id":"mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/mime-0.3.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mime","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/mime-0.3.16/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libmime-eff97299361f36af.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"cassowary 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cassowary-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cassowary","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cassowary-0.3.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libcassowary-8c24b083a09a0bd7.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"ipnet 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.4.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ipnet","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.4.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/deps/libipnet-43d994642c7d5187.rmeta"],"executable":null,"fresh":false}
Checking base64 v0.13.0
Compiling schemars v0.8.8
{"reason":"compiler-artifact","package_id":"rayon-core 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.1/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/rayon-core-a42ba1f2d6cabca3/build-script-build"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/maplit-1.0.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"maplit","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/maplit-1.0.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libmaplit-4ff86e8087812631.rmeta"],"executable":null,"fresh":false}
Checking glob v0.3.0
{"reason":"compiler-artifact","package_id":"base64 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.13.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libbase64-4504c7e61f85adf8.rmeta"],"executable":null,"fresh":false}
Compiling semver v1.0.6
{"reason":"compiler-artifact","package_id":"hex 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hex","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.4.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/opt/dove/target/debug/deps/libhex-c4017e0f630f4596.rlib","/opt/dove/target/debug/deps/libhex-c4017e0f630f4596.rmeta"],"executable":null,"fresh":false}
Checking dyn-clone v1.0.5
{"reason":"compiler-artifact","package_id":"native-tls 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/native-tls-0.2.8/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/native-tls-0.2.8/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/native-tls-d3854ba6b291ca0b/build-script-build"],"executable":null,"fresh":false}
Compiling pontem-client v0.15.0 (/opt/dove/pontem/client)
{"reason":"compiler-artifact","package_id":"glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"glob","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/glob-0.3.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libglob-58089a46c91623d1.rmeta"],"executable":null,"fresh":false}
Checking untrusted v0.7.1
{"reason":"compiler-artifact","package_id":"dyn-clone 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/dyn-clone-1.0.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dyn-clone","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/dyn-clone-1.0.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libdyn_clone-02006cade9fce8ed.rmeta"],"executable":null,"fresh":false}
Checking humantime v2.1.0
{"reason":"compiler-artifact","package_id":"untrusted 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/untrusted-0.7.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"untrusted","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/untrusted-0.7.1/src/untrusted.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libuntrusted-323c4fa8ccd63cfd.rmeta"],"executable":null,"fresh":false}
Checking spin v0.5.2
{"reason":"compiler-artifact","package_id":"humantime 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"humantime","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/humantime-2.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libhumantime-b3b3a9e0b2ede8dd.rmeta"],"executable":null,"fresh":false}
Compiling git-hash v0.1.0 (/opt/dove/common/git-hash)
{"reason":"compiler-artifact","package_id":"spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/spin-0.5.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"spin","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/spin-0.5.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libspin-a997de3b7d6da66f.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"git-hash 0.1.0 (path+file:///opt/dove/common/git-hash)","manifest_path":"/opt/dove/common/git-hash/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"git-hash","src_path":"/opt/dove/common/git-hash/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libgit_hash-eb1f0c442c131e37.rmeta"],"executable":null,"fresh":false}
Checking instant v0.1.12
{"reason":"compiler-artifact","package_id":"instant 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"instant","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/instant-0.1.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libinstant-316bf98fc5116d59.rmeta"],"executable":null,"fresh":false}
Checking libloading v0.7.3
{"reason":"compiler-artifact","package_id":"libloading 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/libloading-0.7.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libloading","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/libloading-0.7.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/liblibloading-8d381d3f9911a38b.rmeta"],"executable":null,"fresh":false}
Compiling generic-array v0.14.5
{"reason":"compiler-artifact","package_id":"encoding_rs 0.8.30 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.30/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.30/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default"],"filenames":["/opt/dove/target/debug/build/encoding_rs-16a388c5906faee0/build-script-build"],"executable":null,"fresh":false}
Compiling proc-macro-error-attr v1.0.4
{"reason":"compiler-artifact","package_id":"proc-macro-hack 0.5.19 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-hack-0.5.19/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-hack-0.5.19/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/proc-macro-hack-8a5b430d3ce0e024/build-script-build"],"executable":null,"fresh":false}
Compiling proc-macro-error v1.0.4
{"reason":"compiler-artifact","package_id":"schemars 0.8.8 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/schemars-0.8.8/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/schemars-0.8.8/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","derive","indexmap","preserve_order","schemars_derive"],"filenames":["/opt/dove/target/debug/build/schemars-70b73bc9ddab4546/build-script-build"],"executable":null,"fresh":false}
Compiling ahash v0.7.6
{"reason":"compiler-artifact","package_id":"semver 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.6/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.6/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/build/semver-d35397d9358bc5b8/build-script-build"],"executable":null,"fresh":false}
Compiling uncased v0.9.6
{"reason":"compiler-artifact","package_id":"pontem-client 0.15.0 (path+file:///opt/dove/pontem/client)","manifest_path":"/opt/dove/pontem/client/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/opt/dove/pontem/client/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/pontem-client-09e2830ce03098c2/build-script-build"],"executable":null,"fresh":false}
Compiling im v15.0.0
{"reason":"compiler-artifact","package_id":"generic-array 0.14.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.5/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.5/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/generic-array-f13b5bbd6d3c19d8/build-script-build"],"executable":null,"fresh":false}
Compiling unicase v2.6.0
{"reason":"compiler-artifact","package_id":"paste 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/paste-1.0.6/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"paste","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/paste-1.0.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libpaste-bde47e75fd938910.so"],"executable":null,"fresh":false}
Compiling nom v5.1.2
{"reason":"compiler-artifact","package_id":"proc-macro-error-attr 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/proc-macro-error-attr-2feee79e1dceaeb2/build-script-build"],"executable":null,"fresh":false}
Compiling num-traits v0.2.14
{"reason":"compiler-artifact","package_id":"proc-macro-error 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-1.0.4/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","syn","syn-error"],"filenames":["/opt/dove/target/debug/build/proc-macro-error-29907f9446fc2e47/build-script-build"],"executable":null,"fresh":false}
Compiling indexmap v1.8.0
{"reason":"compiler-artifact","package_id":"ahash 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/./build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/build/ahash-0b40da64c2545175/build-script-build"],"executable":null,"fresh":false}
Compiling num-integer v0.1.44
{"reason":"compiler-artifact","package_id":"uncased 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/uncased-0.9.6/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/uncased-0.9.6/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/uncased-e5ddf2dfcecaece5/build-script-build"],"executable":null,"fresh":false}
Compiling num-bigint v0.4.3
{"reason":"compiler-artifact","package_id":"im 15.0.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/im-15.0.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/im-15.0.0/./build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/im-918b07e2e1478565/build-script-build"],"executable":null,"fresh":false}
Compiling num-iter v0.1.42
{"reason":"compiler-artifact","package_id":"unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.6.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.6.0/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/unicase-7835dcef070bd383/build-script-build"],"executable":null,"fresh":false}
Compiling num-rational v0.4.0
{"reason":"compiler-artifact","package_id":"nom 5.1.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","lexical","lexical-core","std"],"filenames":["/opt/dove/target/debug/build/nom-a74fc2fe2a0448a7/build-script-build"],"executable":null,"fresh":false}
Compiling memoffset v0.6.5
{"reason":"compiler-artifact","package_id":"num-traits 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","i128","std"],"filenames":["/opt/dove/target/debug/build/num-traits-5beb75e4c120094e/build-script-build"],"executable":null,"fresh":false}
Compiling crossbeam-epoch v0.9.8
{"reason":"compiler-artifact","package_id":"git-hash 0.1.0 (path+file:///opt/dove/common/git-hash)","manifest_path":"/opt/dove/common/git-hash/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"git-hash","src_path":"/opt/dove/common/git-hash/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libgit_hash-82c72b8d1f6256d9.so"],"executable":null,"fresh":false}
Compiling rayon v1.5.1
{"reason":"compiler-artifact","package_id":"indexmap 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.8.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.8.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["serde","serde-1"],"filenames":["/opt/dove/target/debug/build/indexmap-34bbed58ca3a83ca/build-script-build"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"memchr 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/memchr-e3dc35d8519d99ff/out"}
{"reason":"build-script-executed","package_id":"log 0.4.14 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["atomic_cas","has_atomics"],"env":[],"out_dir":"/opt/dove/target/debug/build/log-4f6962aa4f658aa7/out"}
{"reason":"build-script-executed","package_id":"serde_derive 1.0.136 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["underscore_consts","ptr_addr_of"],"env":[],"out_dir":"/opt/dove/target/debug/build/serde_derive-09f5d9969103a7fb/out"}
Checking tracing-core v0.1.23
{"reason":"compiler-artifact","package_id":"tracing-core 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tracing-core-0.1.23/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing-core","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tracing-core-0.1.23/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","lazy_static","std","valuable"],"filenames":["/opt/dove/target/debug/deps/libtracing_core-5e8bd00862e5fb14.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"syn 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["syn_disable_nightly_tests"],"env":[],"out_dir":"/opt/dove/target/debug/build/syn-1fb2b0103a7090b1/out"}
{"reason":"build-script-executed","package_id":"serde 1.0.136 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/serde-c5c3a58285a09397/out"}
{"reason":"compiler-artifact","package_id":"num-integer 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.44/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.44/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["i128","std"],"filenames":["/opt/dove/target/debug/build/num-integer-9a7be7f55744c8c8/build-script-build"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"libc 0.2.120 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["freebsd11","libc_priv_mod_use","libc_union","libc_const_size_of","libc_align","libc_core_cvoid","libc_packedN","libc_cfg_target_vendor","libc_non_exhaustive","libc_ptr_addr_of"],"env":[],"out_dir":"/opt/dove/target/debug/build/libc-3416239858d2ef04/out"}
Checking rlp v0.5.1
{"reason":"build-script-executed","package_id":"proc-macro2 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["use_proc_macro","wrap_proc_macro"],"env":[],"out_dir":"/opt/dove/target/debug/build/proc-macro2-61e08e0a104cbdad/out"}
Checking thread_local v1.1.4
{"reason":"compiler-artifact","package_id":"rlp 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rlp-0.5.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rlp","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rlp-0.5.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/librlp-6fa93a8f45b5f389.rmeta"],"executable":null,"fresh":false}
Checking regex-automata v0.1.10
{"reason":"compiler-artifact","package_id":"thread_local 1.1.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thread_local","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.1.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libthread_local-d16aee3ff287542c.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"regex-automata 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/regex-automata-0.1.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex-automata","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/regex-automata-0.1.10/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","regex-syntax","std"],"filenames":["/opt/dove/target/debug/deps/libregex_automata-820542ea4267d600.rmeta"],"executable":null,"fresh":false}
Checking block-padding v0.1.5
{"reason":"compiler-artifact","package_id":"block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/block-padding-0.1.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block-padding","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/block-padding-0.1.5/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libblock_padding-94e3a9ce5418b26e.rmeta"],"executable":null,"fresh":false}
Checking textwrap v0.11.0
{"reason":"compiler-artifact","package_id":"textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.11.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"textwrap","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.11.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libtextwrap-cb24800ff88e4394.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"tiny-keccak 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/tiny-keccak-9269a8859f7b07d0/out"}
{"reason":"compiler-artifact","package_id":"num-iter 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-iter-0.1.42/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-iter-0.1.42/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["i128","std"],"filenames":["/opt/dove/target/debug/build/num-iter-8ba5012ab5c5995c/build-script-build"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/crunchy-74b9ebe270bc9789/out"}
Checking plotters-svg v0.3.1
{"reason":"build-script-executed","package_id":"radium 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["radium_atomic_8","radium_atomic_16","radium_atomic_32","radium_atomic_64","radium_atomic_ptr"],"env":[],"out_dir":"/opt/dove/target/debug/build/radium-6c575e642dc46ef9/out"}
{"reason":"build-script-executed","package_id":"crossbeam-utils 0.8.8 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/crossbeam-utils-8921d42a2f174a23/out"}
Checking lock_api v0.4.6
{"reason":"compiler-artifact","package_id":"num-bigint 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/build/num-bigint-897c1c345532197c/build-script-build"],"executable":null,"fresh":false}
Checking lock_api v0.3.4
{"reason":"compiler-artifact","package_id":"plotters-svg 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/plotters-svg-0.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"plotters-svg","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/plotters-svg-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libplotters_svg-725e6fe32b3cc307.rmeta"],"executable":null,"fresh":false}
Checking walkdir v2.3.2
{"reason":"compiler-artifact","package_id":"lock_api 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lock_api-0.4.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lock_api-0.4.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/liblock_api-aec510b8ca779113.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"lock_api 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lock_api-0.3.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lock_api-0.3.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/liblock_api-d59da3693acc48a1.rmeta"],"executable":null,"fresh":false}
Compiling heck v0.3.3
{"reason":"compiler-artifact","package_id":"walkdir 2.3.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"walkdir","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libwalkdir-5f51136f3c4f2d26.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"getrandom 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/getrandom-8707323d7e98647e/out"}
Checking http v0.2.6
{"reason":"build-script-executed","package_id":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["u128","use_proc_macro","wrap_proc_macro"],"env":[],"out_dir":"/opt/dove/target/debug/build/proc-macro2-6eb462718469dda4/out"}
Checking itertools v0.10.3
{"reason":"compiler-artifact","package_id":"num-rational 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-rational-0.4.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-rational-0.4.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["num-bigint","num-bigint-std","std"],"filenames":["/opt/dove/target/debug/build/num-rational-ff6fae46728ae484/build-script-build"],"executable":null,"fresh":false}
Checking itertools v0.9.0
{"reason":"compiler-artifact","package_id":"heck 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"heck","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libheck-e01ee4efdc7086c2.rlib","/opt/dove/target/debug/deps/libheck-e01ee4efdc7086c2.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"http 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libhttp-72f5e65ce5631903.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"itertools 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itertools","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","use_std"],"filenames":["/opt/dove/target/debug/deps/libitertools-dbe356a5a1c8859e.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["syn_can_match_trailing_dollar","syn_can_use_thread_id","syn_can_use_associated_constants","syn_can_call_macro_by_path","syn_disable_nightly_tests"],"env":[],"out_dir":"/opt/dove/target/debug/build/syn-ec709273f60c17d1/out"}
{"reason":"compiler-artifact","package_id":"itertools 0.10.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itertools","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/itertools-0.10.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","use_alloc","use_std"],"filenames":["/opt/dove/target/debug/deps/libitertools-3f1c2ac63871e3cd.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"anyhow 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/anyhow-431591800835412a/out"}
{"reason":"build-script-executed","package_id":"parking_lot_core 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/parking_lot_core-963be2555eb4cd09/out"}
Compiling ring v0.16.20
{"reason":"build-script-executed","package_id":"futures-core 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/futures-core-2272a90213993189/out"}
{"reason":"build-script-executed","package_id":"ref-cast 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/ref-cast-c6044ad2ffe2bd03/out"}
Compiling pest v2.1.3
{"reason":"build-script-executed","package_id":"arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["has_stable_maybe_uninit"],"env":[],"out_dir":"/opt/dove/target/debug/build/arrayvec-2bd3a43ebfc01d2e/out"}
{"reason":"compiler-artifact","package_id":"heck 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"heck","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/heck-0.3.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libheck-795710ff80a98822.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"futures-channel 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/futures-channel-27c1ce71c0f1fbd7/out"}
{"reason":"build-script-executed","package_id":"serde_json 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["limb_width_64"],"env":[],"out_dir":"/opt/dove/target/debug/build/serde_json-03468e0c58433080/out"}
{"reason":"build-script-executed","package_id":"futures-task 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/futures-task-143306d430992427/out"}
Checking unic-ucd-version v0.9.0
{"reason":"compiler-artifact","package_id":"memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/build/memoffset-7cac61ca9c232019/build-script-build"],"executable":null,"fresh":false}
Compiling openssl-sys v0.9.72
{"reason":"build-script-executed","package_id":"parking_lot_core 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/parking_lot_core-05f7ba6e1300b488/out"}
Checking unic-char-property v0.9.0
{"reason":"compiler-artifact","package_id":"unic-ucd-version 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unic-ucd-version-0.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic-ucd-version","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unic-ucd-version-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libunic_ucd_version-1148bceae7b79755.rmeta"],"executable":null,"fresh":false}
Checking yaml-rust v0.4.5
{"reason":"compiler-artifact","package_id":"unic-char-property 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unic-char-property-0.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic-char-property","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unic-char-property-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libunic_char_property-002ffb4e34e938dc.rmeta"],"executable":null,"fresh":false}
Checking tinyvec v1.5.1
{"reason":"compiler-artifact","package_id":"pest 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pest-2.1.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pest","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pest-2.1.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libpest-a441e97a00a6e9eb.rlib","/opt/dove/target/debug/deps/libpest-a441e97a00a6e9eb.rmeta"],"executable":null,"fresh":false}
Checking foreign-types v0.3.2
{"reason":"compiler-artifact","package_id":"yaml-rust 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"yaml-rust","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/yaml-rust-0.4.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libyaml_rust-06f135260d8ec67f.rmeta"],"executable":null,"fresh":false}
Checking slug v0.1.4
{"reason":"compiler-artifact","package_id":"foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-0.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"foreign-types","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/foreign-types-0.3.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libforeign_types-4a5d82c8a6c00642.rmeta"],"executable":null,"fresh":false}
Checking form_urlencoded v1.0.1
{"reason":"compiler-artifact","package_id":"slug 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/slug-0.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slug","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/slug-0.1.4/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libslug-0e1fe5eecbb86110.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"tinyvec 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.5.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-1.5.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","tinyvec_macros"],"filenames":["/opt/dove/target/debug/deps/libtinyvec-ec2fa74d75b64aa4.rmeta"],"executable":null,"fresh":false}
Checking pretty v0.10.0
{"reason":"compiler-artifact","package_id":"form_urlencoded 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"form_urlencoded","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/form_urlencoded-1.0.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libform_urlencoded-bd092aa76d9f8bc1.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"futures-util 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/futures-util-c69a443eae439b41/out"}
Checking tint v1.0.1
{"reason":"compiler-artifact","package_id":"pretty 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pretty-0.10.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pretty","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pretty-0.10.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libpretty-a2b0177fa211bf0a.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"pest 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pest-2.1.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pest","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pest-2.1.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libpest-82511274671cf69d.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"tint 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tint-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tint","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tint-1.0.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libtint-2d7074ad14f9452d.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"lexical-core 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["limb_width_64"],"env":[],"out_dir":"/opt/dove/target/debug/build/lexical-core-7b87ce0a3ee31944/out"}
{"reason":"build-script-executed","package_id":"signal-hook 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/signal-hook-d07fc6daefbe76b6/out"}
{"reason":"build-script-executed","package_id":"httparse 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["httparse_simd"],"env":[],"out_dir":"/opt/dove/target/debug/build/httparse-8827ab8ad637831d/out"}
{"reason":"build-script-executed","package_id":"rayon-core 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/rayon-core-2f28c7b816ce5c3f/out"}
{"reason":"build-script-executed","package_id":"encoding_rs 0.8.30 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/encoding_rs-735ebf29a426ac8c/out"}
{"reason":"build-script-executed","package_id":"async-trait 0.1.52 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/async-trait-6ad648919342c921/out"}
{"reason":"build-script-executed","package_id":"schemars 0.8.8 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["std_atomic64","std_atomic"],"env":[],"out_dir":"/opt/dove/target/debug/build/schemars-0e008063e459f49b/out"}
{"reason":"compiler-artifact","package_id":"crossbeam-epoch 0.9.8 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.8/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.8/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","lazy_static","std"],"filenames":["/opt/dove/target/debug/build/crossbeam-epoch-76dada50e7f4a4a3/build-script-build"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"proc-macro-hack 0.5.19 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/proc-macro-hack-6c4a9b231aa2eed7/out"}
{"reason":"build-script-executed","package_id":"semver 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/semver-90a495381a69169e/out"}
{"reason":"build-script-executed","package_id":"generic-array 0.14.5 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["relaxed_coherence"],"env":[],"out_dir":"/opt/dove/target/debug/build/generic-array-84e17bc7475b451f/out"}
{"reason":"compiler-artifact","package_id":"rayon 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rayon-1.5.1/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/rayon-95af8a5e0db25c12/build-script-build"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"proc-macro-error-attr 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/proc-macro-error-attr-8c324cb29cbd2e4a/out"}
{"reason":"build-script-executed","package_id":"ahash 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["feature=\"runtime-rng\"","feature=\"folded_multiply\""],"env":[],"out_dir":"/opt/dove/target/debug/build/ahash-2f8c9bc5399443f6/out"}
{"reason":"build-script-executed","package_id":"uncased 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/uncased-14e83dd12f24e8a0/out"}
{"reason":"build-script-executed","package_id":"im 15.0.0 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["threadsafe"],"env":[],"out_dir":"/opt/dove/target/debug/build/im-0f860ca609124fbb/out"}
{"reason":"build-script-executed","package_id":"nom 5.1.2 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["stable_i128"],"env":[],"out_dir":"/opt/dove/target/debug/build/nom-93871ef7f5ce45a8/out"}
{"reason":"build-script-executed","package_id":"proc-macro-error 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["use_fallback"],"env":[],"out_dir":"/opt/dove/target/debug/build/proc-macro-error-994b78149171825e/out"}
{"reason":"compiler-artifact","package_id":"memchr 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.4.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","use_std"],"filenames":["/opt/dove/target/debug/deps/libmemchr-558afa8996bea34e.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["__unicase__iter_cmp","__unicase__default_hasher","__unicase__const_fns","__unicase__core_and_alloc"],"env":[],"out_dir":"/opt/dove/target/debug/build/unicase-88cb9507bbf9fba3/out"}
{"reason":"build-script-executed","package_id":"num-traits 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["has_i128","has_to_int_unchecked"],"env":[],"out_dir":"/opt/dove/target/debug/build/num-traits-c4540e67b9be79c9/out"}
{"reason":"build-script-executed","package_id":"num-integer 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["has_i128"],"env":[],"out_dir":"/opt/dove/target/debug/build/num-integer-9b4b955dcc01cc64/out"}
{"reason":"compiler-artifact","package_id":"libc 0.2.120 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.120/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libc","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.120/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["align","default","std"],"filenames":["/opt/dove/target/debug/deps/liblibc-36fcd6d677c03c44.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"memchr 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.4.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","use_std"],"filenames":["/opt/dove/target/debug/deps/libmemchr-c111e956674746ad.rlib","/opt/dove/target/debug/deps/libmemchr-c111e956674746ad.rmeta"],"executable":null,"fresh":false}
Checking impl-rlp v0.3.0
{"reason":"build-script-executed","package_id":"indexmap 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["has_std","rustc_1_51"],"env":[],"out_dir":"/opt/dove/target/debug/build/indexmap-3369946d517d8c53/out"}
Checking triehash v0.8.4
{"reason":"compiler-artifact","package_id":"libc 0.2.120 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.120/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libc","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.120/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["align","default","std"],"filenames":["/opt/dove/target/debug/deps/liblibc-99cccfd33f7cea85.rlib","/opt/dove/target/debug/deps/liblibc-99cccfd33f7cea85.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"impl-rlp 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/impl-rlp-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"impl-rlp","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/impl-rlp-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libimpl_rlp-3a93ad0662615986.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"triehash 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/triehash-0.8.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"triehash","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/triehash-0.8.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libtriehash-a3de229c8ccd3b19.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"num-iter 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["has_i128"],"env":[],"out_dir":"/opt/dove/target/debug/build/num-iter-a0fafb09c93feacb/out"}
{"reason":"compiler-artifact","package_id":"crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crunchy","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.2.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","limit_128","limit_256","std"],"filenames":["/opt/dove/target/debug/deps/libcrunchy-a45a39c5f0117659.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crunchy","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.2.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","limit_128","limit_256","std"],"filenames":["/opt/dove/target/debug/deps/libcrunchy-79e5ea0ad4ab6850.rlib","/opt/dove/target/debug/deps/libcrunchy-79e5ea0ad4ab6850.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"radium 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/radium-0.6.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"radium","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/radium-0.6.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libradium-5654800ba3a8d584.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"crossbeam-utils 0.8.8 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam-utils","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.8.8/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","lazy_static","std"],"filenames":["/opt/dove/target/debug/deps/libcrossbeam_utils-56391939154d1779.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"proc-macro2 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.36/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc-macro2","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.36/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/opt/dove/target/debug/deps/libproc_macro2-4d275b8b7a9025a0.rlib","/opt/dove/target/debug/deps/libproc_macro2-4d275b8b7a9025a0.rmeta"],"executable":null,"fresh":false}
Checking http-body v0.3.1
{"reason":"compiler-artifact","package_id":"http-body 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/http-body-0.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http-body","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/http-body-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libhttp_body-dcacb7fd2ce9e855.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc-macro2","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/opt/dove/target/debug/deps/libproc_macro2-b1b27e291b230010.rlib","/opt/dove/target/debug/deps/libproc_macro2-b1b27e291b230010.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"anyhow 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.56/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anyhow","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.56/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libanyhow-41a7da8053b963ba.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"num-rational 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["has_int_exp_fmt"],"env":[],"out_dir":"/opt/dove/target/debug/build/num-rational-6a98f82f6f173220/out"}
{"reason":"compiler-artifact","package_id":"futures-core 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures-core","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.21/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/opt/dove/target/debug/deps/libfutures_core-4240c9ed235086c5.rmeta"],"executable":null,"fresh":false}
Compiling pest_meta v2.1.3
{"reason":"compiler-artifact","package_id":"arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.4.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arrayvec","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.4.12/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libarrayvec-b51e0dc9ccb72b43.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"futures-task 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures-task","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.21/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/opt/dove/target/debug/deps/libfutures_task-6e23ac59bb82d0a3.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"anyhow 1.0.56 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.56/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anyhow","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.56/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libanyhow-6c2c136b9a676eaa.rlib","/opt/dove/target/debug/deps/libanyhow-6c2c136b9a676eaa.rmeta"],"executable":null,"fresh":false}
Checking unic-ucd-segment v0.9.0
{"reason":"compiler-artifact","package_id":"unic-ucd-segment 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unic-ucd-segment-0.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic-ucd-segment","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unic-ucd-segment-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libunic_ucd_segment-136fe238e30e100f.rmeta"],"executable":null,"fresh":false}
Checking unicode-normalization v0.1.19
{"reason":"build-script-executed","package_id":"memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["tuple_ty","allow_clippy","maybe_uninit","doctests","raw_ref_macros"],"env":[],"out_dir":"/opt/dove/target/debug/build/memoffset-8b5e6645c91b3f29/out"}
{"reason":"compiler-artifact","package_id":"unicode-normalization 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.19/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode-normalization","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.19/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libunicode_normalization-b299650e31b4ade1.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"httparse 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.6.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"httparse","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.6.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libhttparse-cf505ed471557471.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"lexical-core 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lexical-core","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["arrayvec","correct","default","ryu","static_assertions","std","table"],"filenames":["/opt/dove/target/debug/deps/liblexical_core-445103f69f8d7453.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"pest_meta 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pest_meta-2.1.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pest_meta","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pest_meta-2.1.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libpest_meta-636600fe61c3ec73.rlib","/opt/dove/target/debug/deps/libpest_meta-636600fe61c3ec73.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"crossbeam-epoch 0.9.8 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/crossbeam-epoch-f917ea22a28ff5bc/out"}
{"reason":"compiler-artifact","package_id":"encoding_rs 0.8.30 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.30/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"encoding_rs","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.30/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default"],"filenames":["/opt/dove/target/debug/deps/libencoding_rs-2bd16bebe98264d8.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"semver 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"semver","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/semver-1.0.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libsemver-cfa8386c9a5ab9a6.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"uncased 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/uncased-0.9.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"uncased","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/uncased-0.9.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libuncased-7ff544c3b741aeb6.rlib","/opt/dove/target/debug/deps/libuncased-7ff544c3b741aeb6.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"uncased 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/uncased-0.9.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"uncased","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/uncased-0.9.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libuncased-119f81e757bed4a8.rmeta"],"executable":null,"fresh":false}
Checking aho-corasick v0.7.18
{"reason":"build-script-executed","package_id":"rayon 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["step_by","min_const_generics"],"env":[],"out_dir":"/opt/dove/target/debug/build/rayon-86d03fe0fbd23396/out"}
{"reason":"compiler-artifact","package_id":"aho-corasick 0.7.18 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.18/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.18/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libaho_corasick-b4347a5067292cb4.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.6.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicase","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.6.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libunicase-bb6e3fcc144fb4e0.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.6.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicase","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.6.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libunicase-f93a4b2529dec189.rlib","/opt/dove/target/debug/deps/libunicase-f93a4b2529dec189.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"num-traits 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num-traits","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","i128","std"],"filenames":["/opt/dove/target/debug/deps/libnum_traits-3c9308771010029f.rmeta"],"executable":null,"fresh":false}
Compiling getrandom v0.2.5
{"reason":"compiler-artifact","package_id":"aho-corasick 0.7.18 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.18/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.18/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libaho_corasick-b353942a581e986d.rlib","/opt/dove/target/debug/deps/libaho_corasick-b353942a581e986d.rmeta"],"executable":null,"fresh":false}
Compiling cpufeatures v0.2.1
{"reason":"compiler-artifact","package_id":"cpufeatures 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libcpufeatures-fe19013b67fa1da5.rlib","/opt/dove/target/debug/deps/libcpufeatures-fe19013b67fa1da5.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"getrandom 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libgetrandom-a74cc19557446f4d.rlib","/opt/dove/target/debug/deps/libgetrandom-a74cc19557446f4d.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"getrandom 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libgetrandom-8682d93ffa16d819.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"getrandom 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libgetrandom-22bf419d17baa0d6.rmeta"],"executable":null,"fresh":false}
Checking num_cpus v1.13.1
{"reason":"compiler-artifact","package_id":"cpufeatures 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/cpufeatures-0.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libcpufeatures-1b71c26bb5132f5b.rmeta"],"executable":null,"fresh":false}
Checking atty v0.2.14
{"reason":"compiler-artifact","package_id":"num_cpus 1.13.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_cpus","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libnum_cpus-672512bac2b0f096.rmeta"],"executable":null,"fresh":false}
Checking tempfile v3.3.0
{"reason":"compiler-artifact","package_id":"atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/atty-0.2.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atty","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/atty-0.2.14/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libatty-e21d4a98440ac925.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"tempfile 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tempfile","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libtempfile-d616279316eab500.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"parking_lot_core 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.9.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot_core","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.9.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libparking_lot_core-8fe2a3b757dc56b0.rmeta"],"executable":null,"fresh":false}
Checking signal-hook-registry v1.4.0
{"reason":"compiler-artifact","package_id":"parking_lot_core 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.8.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot_core","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.8.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libparking_lot_core-f36544d79f35b51b.rmeta"],"executable":null,"fresh":false}
Checking net2 v0.2.37
{"reason":"compiler-artifact","package_id":"signal-hook-registry 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/signal-hook-registry-1.4.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"signal-hook-registry","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/signal-hook-registry-1.4.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libsignal_hook_registry-d3603ce7040403b9.rmeta"],"executable":null,"fresh":false}
Checking iovec v0.1.4
{"reason":"compiler-artifact","package_id":"net2 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/net2-0.2.37/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"net2","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/net2-0.2.37/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","duration"],"filenames":["/opt/dove/target/debug/deps/libnet2-4290d4db3d783b6f.rmeta"],"executable":null,"fresh":false}
Checking time v0.1.43
{"reason":"compiler-artifact","package_id":"iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/iovec-0.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"iovec","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/iovec-0.1.4/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libiovec-7c85657b75b91aaa.rmeta"],"executable":null,"fresh":false}
Checking dirs-sys v0.3.6
{"reason":"compiler-artifact","package_id":"time 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.43/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"time","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.43/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libtime-f94e09cbe4dac31e.rmeta"],"executable":null,"fresh":false}
Checking socket2 v0.4.4
{"reason":"compiler-artifact","package_id":"dirs-sys 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/dirs-sys-0.3.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs-sys","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/dirs-sys-0.3.6/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libdirs_sys-76c7892b157e20fe.rmeta"],"executable":null,"fresh":false}
Checking parking_lot_core v0.7.2
{"reason":"compiler-artifact","package_id":"socket2 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.4.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"socket2","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.4.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["all"],"filenames":["/opt/dove/target/debug/deps/libsocket2-f8e058dea7559a82.rmeta"],"executable":null,"fresh":false}
Checking socket2 v0.3.19
{"reason":"compiler-artifact","package_id":"parking_lot_core 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.7.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot_core","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.7.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libparking_lot_core-1b0dac586980bff1.rmeta"],"executable":null,"fresh":false}
Checking rpassword v5.0.1
{"reason":"compiler-artifact","package_id":"rpassword 5.0.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rpassword-5.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rpassword","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rpassword-5.0.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/librpassword-8a8d07ff60c682d5.rmeta"],"executable":null,"fresh":false}
Compiling quote v1.0.15
{"reason":"compiler-artifact","package_id":"socket2 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.3.19/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"socket2","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.3.19/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libsocket2-c100c6362a450b4b.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"tiny-keccak 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tiny-keccak-2.0.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tiny-keccak","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tiny-keccak-2.0.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","keccak","sha3"],"filenames":["/opt/dove/target/debug/deps/libtiny_keccak-4c672c9c1ecd6e76.rlib","/opt/dove/target/debug/deps/libtiny_keccak-4c672c9c1ecd6e76.rmeta"],"executable":null,"fresh":false}
Checking uint v0.9.3
{"reason":"compiler-artifact","package_id":"quote 1.0.15 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.15/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/opt/dove/target/debug/deps/libquote-ffa3e51efa95423c.rlib","/opt/dove/target/debug/deps/libquote-ffa3e51efa95423c.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"num-bigint 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["u64_digit","has_try_from"],"env":[],"out_dir":"/opt/dove/target/debug/build/num-bigint-0759463a834aeaf8/out"}
Checking hash256-std-hasher v0.15.2
{"reason":"compiler-artifact","package_id":"uint 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/uint-0.9.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"uint","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/uint-0.9.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libuint-43b0e81172cb3c77.rmeta"],"executable":null,"fresh":false}
Checking bitvec v0.20.4
{"reason":"compiler-artifact","package_id":"tiny-keccak 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tiny-keccak-2.0.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tiny-keccak","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/tiny-keccak-2.0.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","keccak","sha3"],"filenames":["/opt/dove/target/debug/deps/libtiny_keccak-11febe9ba0f04e7a.rmeta"],"executable":null,"fresh":false}
Checking crossbeam-channel v0.5.3
{"reason":"compiler-artifact","package_id":"hash256-std-hasher 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hash256-std-hasher-0.15.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hash256-std-hasher","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hash256-std-hasher-0.15.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libhash256_std_hasher-8c5c192183c38403.rmeta"],"executable":null,"fresh":false}
Compiling quote v0.6.13
{"reason":"compiler-artifact","package_id":"crossbeam-channel 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam-channel","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.5.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["crossbeam-utils","default","std"],"filenames":["/opt/dove/target/debug/deps/libcrossbeam_channel-007847c1ebc3e897.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"futures-channel 0.3.21 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures-channel","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.21/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","futures-sink","sink","std"],"filenames":["/opt/dove/target/debug/deps/libfutures_channel-3a951231de24958e.rmeta"],"executable":null,"fresh":false}
Checking blake2-rfc v0.2.18
{"reason":"compiler-artifact","package_id":"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.6.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.6.13/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/opt/dove/target/debug/deps/libquote-0b7310f97ede76c4.rlib","/opt/dove/target/debug/deps/libquote-0b7310f97ede76c4.rmeta"],"executable":null,"fresh":false}
Checking unic-segment v0.9.0
{"reason":"compiler-artifact","package_id":"blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/blake2-rfc-0.2.18/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"blake2-rfc","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/blake2-rfc-0.2.18/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libblake2_rfc-1dde959c35966b2c.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"bitvec 0.20.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/bitvec-0.20.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitvec","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/bitvec-0.20.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/opt/dove/target/debug/deps/libbitvec-72151462ae65291e.rmeta"],"executable":null,"fresh":false}
Checking idna v0.2.3
{"reason":"compiler-artifact","package_id":"unic-segment 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unic-segment-0.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unic-segment","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/unic-segment-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libunic_segment-03b64ca57c35bfa7.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"memoffset 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memoffset","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/memoffset-0.6.5/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/deps/libmemoffset-255d16e6bb63e81d.rmeta"],"executable":null,"fresh":false}
Compiling phf_shared v0.10.0
{"reason":"compiler-artifact","package_id":"idna 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.2.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.2.3/src/lib.rs","edition":"2018","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libidna-b4ab492802dfd4d3.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"phf_shared 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/phf_shared-0.10.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/phf_shared-0.10.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","uncased"],"filenames":["/opt/dove/target/debug/deps/libphf_shared-6f67aecd1d2c99db.rlib","/opt/dove/target/debug/deps/libphf_shared-6f67aecd1d2c99db.rmeta"],"executable":null,"fresh":false}
Checking regex v1.5.5
{"reason":"compiler-artifact","package_id":"phf_shared 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/phf_shared-0.10.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf_shared","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/phf_shared-0.10.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","uncased"],"filenames":["/opt/dove/target/debug/deps/libphf_shared-a2b597c9af117b93.rmeta"],"executable":null,"fresh":false}
Compiling mime_guess v2.0.4
{"reason":"compiler-artifact","package_id":"nom 5.1.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nom","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","lexical","lexical-core","std"],"filenames":["/opt/dove/target/debug/deps/libnom-99979bd0c7412ae7.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","dev_urandom_fallback","once_cell"],"filenames":["/opt/dove/target/debug/build/ring-908bf867daea0282/build-script-build"],"executable":null,"fresh":false}
Checking plotters v0.3.1
{"reason":"compiler-artifact","package_id":"regex 1.5.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.5.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.5.5/src/lib.rs","edition":"2018","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aho-corasick","default","memchr","perf","perf-cache","perf-dfa","perf-inline","perf-literal","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["/opt/dove/target/debug/deps/libregex-c8debad1ee89ad1b.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"num-integer 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.44/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num-integer","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.44/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["i128","std"],"filenames":["/opt/dove/target/debug/deps/libnum_integer-c4561156b598fa09.rmeta"],"executable":null,"fresh":false}
Checking num-complex v0.4.0
{"reason":"compiler-artifact","package_id":"plotters 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/plotters-0.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"plotters","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/plotters-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["area_series","evcxr","histogram","line_series","plotters-svg","svg_backend"],"filenames":["/opt/dove/target/debug/deps/libplotters-0092d238d5b3b256.rmeta"],"executable":null,"fresh":false}
Checking num-traits v0.1.43
{"reason":"compiler-artifact","package_id":"num-complex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-complex-0.4.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num-complex","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-complex-0.4.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/libnum_complex-254db4270be8ae21.rmeta"],"executable":null,"fresh":false}
Checking ordered-float v2.10.0
{"reason":"compiler-artifact","package_id":"num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.43/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num-traits","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.43/src/lib.rs","edition":"2015","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libnum_traits-16c53cf8f3394cd4.rmeta"],"executable":null,"fresh":false}
Compiling rand_core v0.6.3
{"reason":"compiler-artifact","package_id":"ordered-float 2.10.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-2.10.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ordered-float","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-2.10.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libordered_float-4df269043a75a168.rmeta"],"executable":null,"fresh":false}
Checking rand_core v0.5.1
{"reason":"compiler-artifact","package_id":"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.5.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.5.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","getrandom","std"],"filenames":["/opt/dove/target/debug/deps/librand_core-6aa52602408b7170.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"rand_core 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","getrandom","std"],"filenames":["/opt/dove/target/debug/deps/librand_core-2b9438b865fbe249.rlib","/opt/dove/target/debug/deps/librand_core-2b9438b865fbe249.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"rand_core 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","getrandom","std"],"filenames":["/opt/dove/target/debug/deps/librand_core-24d7413f72365955.rmeta"],"executable":null,"fresh":false}
Checking clap v2.34.0
{"reason":"compiler-artifact","package_id":"ahash 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ahash","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.7.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libahash-36c9f7168984d06e.rmeta"],"executable":null,"fresh":false}
Checking colored v2.0.0
{"reason":"compiler-artifact","package_id":"colored 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/colored-2.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"colored","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/colored-2.0.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libcolored-8ff72f52fc08d985.rmeta"],"executable":null,"fresh":false}
Checking parking_lot v0.12.0
{"reason":"compiler-artifact","package_id":"regex 1.5.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.5.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.5.5/src/lib.rs","edition":"2018","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aho-corasick","default","memchr","perf","perf-cache","perf-dfa","perf-inline","perf-literal","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["/opt/dove/target/debug/deps/libregex-c2680e44fbc5525a.rlib","/opt/dove/target/debug/deps/libregex-c2680e44fbc5525a.rmeta"],"executable":null,"fresh":false}
Checking parking_lot v0.11.2
{"reason":"compiler-artifact","package_id":"parking_lot 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.12.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.12.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","send_guard"],"filenames":["/opt/dove/target/debug/deps/libparking_lot-fde60736b62dd8b8.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"parking_lot 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.11.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.11.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/deps/libparking_lot-8875e9a60d6eb0c1.rmeta"],"executable":null,"fresh":false}
Checking directories v4.0.1
{"reason":"compiler-artifact","package_id":"signal-hook 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/signal-hook-0.3.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"signal-hook","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/signal-hook-0.3.13/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["channel","default","iterator"],"filenames":["/opt/dove/target/debug/deps/libsignal_hook-18018d25b0a5ff91.rmeta"],"executable":null,"fresh":false}
Checking dirs v4.0.0
{"reason":"compiler-artifact","package_id":"clap 2.34.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.34.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"clap","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.34.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ansi_term","atty","color","default","strsim","suggestions","vec_map"],"filenames":["/opt/dove/target/debug/deps/libclap-3407e950b7b3e6dc.rmeta"],"executable":null,"fresh":false}
Checking parking_lot v0.10.2
{"reason":"compiler-artifact","package_id":"directories 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/directories-4.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"directories","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/directories-4.0.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libdirectories-af3f003522b40a8c.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"dirs 4.0.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/dirs-4.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/dirs-4.0.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libdirs-3c1b7d9350ec4948.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"parking_lot 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.10.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.10.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/deps/libparking_lot-a45cc37d2ab1eb56.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"openssl-sys 0.9.72 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.72/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-main","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.72/build/main.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/build/openssl-sys-1a4f4cccbaed0686/build-script-main"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"crossbeam-epoch 0.9.8 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam-epoch","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.9.8/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","lazy_static","std"],"filenames":["/opt/dove/target/debug/deps/libcrossbeam_epoch-6f6d84619091c564.rmeta"],"executable":null,"fresh":false}
Compiling phf v0.10.1
{"reason":"compiler-artifact","package_id":"phf 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/phf-0.10.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/phf-0.10.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["uncased"],"filenames":["/opt/dove/target/debug/deps/libphf-c4056defc6210aab.rlib","/opt/dove/target/debug/deps/libphf-c4056defc6210aab.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"phf 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/phf-0.10.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"phf","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/phf-0.10.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["uncased"],"filenames":["/opt/dove/target/debug/deps/libphf-bdc394d1cb2ddc81.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","extra-traits","full","parsing","printing","proc-macro","quote","visit"],"filenames":["/opt/dove/target/debug/deps/libsyn-586860763e033ec6.rlib","/opt/dove/target/debug/deps/libsyn-586860763e033ec6.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"syn 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.89/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.89/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","quote","visit","visit-mut"],"filenames":["/opt/dove/target/debug/deps/libsyn-5928246f1b850698.rlib","/opt/dove/target/debug/deps/libsyn-5928246f1b850698.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"num-iter 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-iter-0.1.42/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num-iter","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-iter-0.1.42/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["i128","std"],"filenames":["/opt/dove/target/debug/deps/libnum_iter-e6b4a8d5ed7a8754.rmeta"],"executable":null,"fresh":false}
Checking chrono v0.4.19
{"reason":"compiler-artifact","package_id":"num-bigint 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num-bigint","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.4.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/opt/dove/target/debug/deps/libnum_bigint-384d8edce9f298c5.rmeta"],"executable":null,"fresh":false}
Compiling parse-zoneinfo v0.3.0
{"reason":"compiler-artifact","package_id":"chrono 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.4.19/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"chrono","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.4.19/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clock","default","libc","oldtime","std","time","winapi"],"filenames":["/opt/dove/target/debug/deps/libchrono-59c1218b808874a4.rmeta"],"executable":null,"fresh":false}
Checking serde-hjson v0.9.1
{"reason":"compiler-artifact","package_id":"serde-hjson 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde-hjson","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde-hjson-0.9.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libserde_hjson-997a0c77deaf61e4.rmeta"],"executable":null,"fresh":false}
Compiling rand_chacha v0.3.1
{"reason":"compiler-artifact","package_id":"parse-zoneinfo 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parse-zoneinfo-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parse-zoneinfo","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/parse-zoneinfo-0.3.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libparse_zoneinfo-4383bc553f07c28b.rlib","/opt/dove/target/debug/deps/libparse_zoneinfo-4383bc553f07c28b.rmeta"],"executable":null,"fresh":false}
Checking rand_xoshiro v0.4.0
{"reason":"compiler-artifact","package_id":"rand_xoshiro 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_xoshiro-0.4.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_xoshiro","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_xoshiro-0.4.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/librand_xoshiro-da46885445a625b4.rmeta"],"executable":null,"fresh":false}
Checking rand_chacha v0.2.2
{"reason":"compiler-artifact","package_id":"rand_chacha 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/librand_chacha-b1548714ef6d5d2a.rlib","/opt/dove/target/debug/deps/librand_chacha-b1548714ef6d5d2a.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.2.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/librand_chacha-e7d6c81afa0d9162.rmeta"],"executable":null,"fresh":false}
Checking hashbrown v0.12.0
{"reason":"compiler-artifact","package_id":"rand_chacha 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/opt/dove/target/debug/deps/librand_chacha-65a9b534836b089d.rmeta"],"executable":null,"fresh":false}
Checking dashmap v5.2.0
{"reason":"compiler-artifact","package_id":"dashmap 5.2.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/dashmap-5.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dashmap","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/dashmap-5.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","send_guard"],"filenames":["/opt/dove/target/debug/deps/libdashmap-b8f0867470b25543.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"hashbrown 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.12.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ahash","default","inline-more"],"filenames":["/opt/dove/target/debug/deps/libhashbrown-30be2bc6c909eb4f.rmeta"],"executable":null,"fresh":false}
Checking crossbeam-deque v0.8.1
{"reason":"compiler-artifact","package_id":"crossbeam-deque 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam-deque","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.8.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["crossbeam-epoch","crossbeam-utils","default","std"],"filenames":["/opt/dove/target/debug/deps/libcrossbeam_deque-efb770a744c1e5d3.rmeta"],"executable":null,"fresh":false}
Compiling synstructure v0.12.6
{"reason":"build-script-executed","package_id":"openssl-sys 0.9.72 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":["ssl","crypto"],"linked_paths":[],"cfgs":["const_fn","osslconf=\"OPENSSL_NO_SSL3_METHOD\"","ossl101","ossl102","ossl102f","ossl102h","ossl110","ossl110f","ossl110g","ossl110h","ossl111","ossl111b","ossl111c"],"env":[],"out_dir":"/opt/dove/target/debug/build/openssl-sys-e61f840da576d8e4/out"}
Compiling pest_generator v2.1.3
{"reason":"compiler-artifact","package_id":"synstructure 0.12.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"synstructure","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/synstructure-0.12.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/opt/dove/target/debug/deps/libsynstructure-b465b4b9c6d57170.rlib","/opt/dove/target/debug/deps/libsynstructure-b465b4b9c6d57170.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"pest_generator 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pest_generator-2.1.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pest_generator","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pest_generator-2.1.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libpest_generator-878049a1b1126951.rlib","/opt/dove/target/debug/deps/libpest_generator-878049a1b1126951.rmeta"],"executable":null,"fresh":false}
Compiling serde_derive_internals v0.25.0
{"reason":"compiler-artifact","package_id":"proc-macro-hack 0.5.19 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-hack-0.5.19/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"proc-macro-hack","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-hack-0.5.19/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libproc_macro_hack-d15a4d88428c8315.so"],"executable":null,"fresh":false}
Compiling thiserror-impl v1.0.30
{"reason":"build-script-executed","package_id":"ring 0.16.20 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":["static=ring-core","static=ring-test"],"linked_paths":["native=/opt/dove/target/debug/build/ring-ad75a024a74eff4d/out"],"cfgs":[],"env":[],"out_dir":"/opt/dove/target/debug/build/ring-ad75a024a74eff4d/out"}
Compiling impl-trait-for-tuples v0.2.2
{"reason":"compiler-artifact","package_id":"serde_derive_internals 0.25.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive_internals-0.25.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_derive_internals","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive_internals-0.25.0/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libserde_derive_internals-2a92b5b2cf6275cf.rlib","/opt/dove/target/debug/deps/libserde_derive_internals-2a92b5b2cf6275cf.rmeta"],"executable":null,"fresh":false}
Compiling derive_more v0.99.17
{"reason":"compiler-artifact","package_id":"mime_guess 2.0.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/mime_guess-2.0.4/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/mime_guess-2.0.4/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","rev-mappings"],"filenames":["/opt/dove/target/debug/build/mime_guess-bfde3adb7f691c40/build-script-build"],"executable":null,"fresh":false}
Compiling rlp-derive v0.1.0
{"reason":"compiler-artifact","package_id":"proc-macro-error-attr 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"proc-macro-error-attr","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-error-attr-1.0.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libproc_macro_error_attr-da3e2c12c892c873.so"],"executable":null,"fresh":false}
Compiling ref-cast-impl v1.0.6
{"reason":"build-script-executed","package_id":"typenum 1.15.0 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[["TYPENUM_BUILD_CONSTS","/opt/dove/target/debug/build/typenum-a82fca480dd8e98d/out/consts.rs"],["TYPENUM_BUILD_OP","/opt/dove/target/debug/build/typenum-a82fca480dd8e98d/out/op.rs"]],"out_dir":"/opt/dove/target/debug/build/typenum-a82fca480dd8e98d/out"}
Compiling variant_count v1.1.0
{"reason":"compiler-artifact","package_id":"rlp-derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rlp-derive-0.1.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"rlp-derive","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rlp-derive-0.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/librlp_derive-5ff0584e7de70923.so"],"executable":null,"fresh":false}
Compiling tracing-attributes v0.1.20
{"reason":"compiler-artifact","package_id":"derive_more 0.99.17 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/derive_more-0.99.17/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"derive_more","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/derive_more-0.99.17/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["from"],"filenames":["/opt/dove/target/debug/deps/libderive_more-37f83f9b7a38b0c0.so"],"executable":null,"fresh":false}
Compiling futures-macro v0.3.21
{"reason":"compiler-artifact","package_id":"thiserror-impl 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.30/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"thiserror-impl","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.30/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libthiserror_impl-9a5199b2ce6e92bd.so"],"executable":null,"fresh":false}
Compiling pin-project-internal v1.0.10
{"reason":"compiler-artifact","package_id":"ref-cast-impl 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ref-cast-impl-1.0.6/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"ref-cast-impl","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/ref-cast-impl-1.0.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libref_cast_impl-dcc6ff68de52742c.so"],"executable":null,"fresh":false}
Compiling tokio-macros v1.7.0
{"reason":"compiler-artifact","package_id":"serde_derive 1.0.136 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.136/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_derive","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.136/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/opt/dove/target/debug/deps/libserde_derive-3d9bfbc99628be30.so"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"variant_count 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/variant_count-1.1.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"variant_count","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/variant_count-1.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libvariant_count-7092a6f03e2c2594.so"],"executable":null,"fresh":false}
Compiling diem-crypto-derive v0.0.3
{"reason":"compiler-artifact","package_id":"impl-trait-for-tuples 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/impl-trait-for-tuples-0.2.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"impl-trait-for-tuples","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/impl-trait-for-tuples-0.2.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libimpl_trait_for_tuples-26d5d269333b7a98.so"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"num-rational 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-rational-0.4.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num-rational","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/num-rational-0.4.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["num-bigint","num-bigint-std","std"],"filenames":["/opt/dove/target/debug/deps/libnum_rational-ac72891ba788f4bc.rmeta"],"executable":null,"fresh":false}
Compiling rand v0.8.5
{"reason":"compiler-artifact","package_id":"rand 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","getrandom","libc","rand_chacha","small_rng","std","std_rng"],"filenames":["/opt/dove/target/debug/deps/librand-3543a30c82e801ce.rlib","/opt/dove/target/debug/deps/librand-3543a30c82e801ce.rmeta"],"executable":null,"fresh":false}
Checking rand v0.7.3
{"reason":"compiler-artifact","package_id":"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","getrandom","getrandom_package","libc","std"],"filenames":["/opt/dove/target/debug/deps/librand-f4d9a67301bb301b.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"rand 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","getrandom","libc","rand_chacha","small_rng","std","std_rng"],"filenames":["/opt/dove/target/debug/deps/librand-63fae9a458a54d71.rmeta"],"executable":null,"fresh":false}
Checking internment v0.5.6
{"reason":"compiler-artifact","package_id":"internment 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/internment-0.5.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"internment","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/internment-0.5.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ahash","arc","dashmap","once_cell"],"filenames":["/opt/dove/target/debug/deps/libinternment-03f79d094213b449.rmeta"],"executable":null,"fresh":false}
{"reason":"compiler-artifact","package_id":"rayon-core 1.9.1 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rayon-core","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.9.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/librayon_core-0077dab0a23c97ce.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"openssl 0.10.38 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["osslconf=\"OPENSSL_NO_SSL3_METHOD\"","ossl101","ossl102","ossl110","ossl110g","ossl111"],"env":[],"out_dir":"/opt/dove/target/debug/build/openssl-e2fc458f014ffa19/out"}
{"reason":"compiler-artifact","package_id":"openssl-sys 0.9.72 (registry+https://github.com/rust-lang/crates.io-index)","manifest_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.72/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"openssl-sys","src_path":"/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.72/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/opt/dove/target/debug/deps/libopenssl_sys-c23e6567deebb7e1.rmeta"],"executable":null,"fresh":false}
{"reason":"build-script-executed","package_id":"native-tls 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)","linked_libs":[],"linked_paths":[],"cfgs":["have_min_max_version"],"env":[],"out_dir":"/opt/dove/target/debug/build/native-tls-578b7de637ad7efb/out"}