forked from Timi16/soroban-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild_error_utf8.txt
More file actions
2233 lines (2135 loc) · 34.9 KB
/
Copy pathbuild_error_utf8.txt
File metadata and controls
2233 lines (2135 loc) · 34.9 KB
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
cargo : Compiling
syn v2.0.117
At line:1 char:1
+ cargo check >
build_error.txt 2>&1
+ ~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~
+ CategoryInfo
: NotSpeci
fied: ( Compili
ng syn v2.0.117:S
tring) [], Remote
Exception
+ FullyQualifiedE
rrorId : NativeCo
mmandError
Checking cfg-if
v1.0.4
Compiling serde
v1.0.228
Checking
windows-link v0.2.1
Compiling
serde_core v1.0.228
Checking
windows-sys v0.61.2
Checking
getrandom v0.2.17
Compiling zmij
v1.0.21
Checking typenum
v1.19.0
Compiling itoa
v1.0.18
Checking subtle
v2.6.1
Compiling strsim
v0.11.1
Checking
const-oid v0.9.6
Checking
rand_core v0.6.4
Compiling
serde_json v1.0.149
Checking smallvec
v1.15.1
Checking
once_cell v1.21.4
Compiling zerocopy
v0.8.47
Compiling
darling_core v0.23.0
Compiling semver
v1.0.27
Compiling
serde_derive v1.0.228
Compiling
zeroize_derive v1.4.3
Checking zeroize
v1.8.2
Checking
generic-array v0.14.9
Checking
block-buffer v0.10.4
Checking
crypto-common v0.1.6
Checking digest
v0.10.7
Compiling
darling_macro v0.23.0
Compiling
thiserror-impl v1.0.69
Checking
num-traits v0.2.19
Checking memchr
v2.8.0
Compiling darling
v0.23.0
Checking
equivalent v1.0.2
Compiling
serde_with_macros
v3.18.0
Checking either
v1.15.0
Compiling
rustc_version v0.4.1
Compiling
thiserror v1.0.69
Compiling
crate-git-revision
v0.0.6
Checking
ppv-lite86 v0.2.21
Compiling
getrandom v0.3.4
Compiling
stellar-strkey v0.0.9
Compiling
stellar-xdr v22.1.0
Compiling
data-encoding v2.10.0
Checking
hashbrown v0.16.1
Compiling
serde_with v3.18.0
Checking
rand_chacha v0.3.1
Checking indexmap
v2.13.0
Compiling hex
v0.4.3
Compiling ahash
v0.8.12
Compiling
escape-bytes v0.1.1
Checking rand
v0.8.5
Checking
windows_x86_64_msvc
v0.52.6
Checking
num-integer v0.1.46
Checking der
v0.7.10
Checking ff
v0.13.1
Checking base16ct
v0.2.0
Checking log
v0.4.29
Checking
static_assertions
v1.1.0
Checking sec1
v0.7.3
Compiling
itertools v0.10.5
Checking group
v0.13.0
Checking ark-std
v0.4.0
Checking
num-bigint v0.4.6
Checking
windows-targets
v0.52.6
Compiling
clap_derive v4.6.0
Checking
signature v2.2.0
Checking
crypto-bigint v0.5.5
Checking
scopeguard v1.2.0
Checking
cpufeatures v0.2.17
Compiling anstyle
v1.0.14
Compiling
once_cell_polyfill
v1.70.2
Compiling
utf8parse v0.2.2
Compiling
anstyle-parse v1.0.0
Compiling
anstyle-wincon v3.0.11
Checking
elliptic-curve v0.13.8
Checking lock_api
v0.4.14
Checking
ark-serialize v0.4.2
Checking
windows-sys v0.59.0
Checking
crossbeam-utils
v0.8.21
Checking
parking_lot_core
v0.9.12
Compiling
anstyle-query v1.1.5
Checking hmac
v0.12.1
Compiling
is_terminal_polyfill
v1.70.2
Compiling
colorchoice v1.0.5
Checking rfc6979
v0.4.0
Compiling anstream
v1.0.0
Checking libm
v0.2.16
Checking ark-ff
v0.4.2
Checking sha2
v0.10.9
Checking
hashbrown v0.13.2
Compiling
curve25519-dalek
v4.1.3
Checking
aho-corasick v1.1.4
Compiling
num-derive v0.4.2
Compiling
derive_arbitrary
v1.3.2
Checking
regex-syntax v0.8.10
Checking
indexmap-nostd v0.4.0
Checking
downcast-rs v1.2.1
Compiling clap_lex
v1.1.0
Checking ark-poly
v0.4.2
Compiling
clap_builder v4.6.0
Checking
regex-automata v0.4.14
Checking
wasmi_core v0.13.0
Checking
wasmparser-nostd
v0.100.2
Checking
arbitrary v1.3.2
Checking ecdsa
v0.16.9
Checking winapi
v0.3.9
Checking
windows_x86_64_msvc
v0.53.1
Compiling
soroban-env-common
v22.1.3
Compiling curve2551
9-dalek-derive v0.1.1
Checking base64
v0.13.1
Checking
rustc-demangle v0.1.27
Checking
pin-project-lite
v0.2.17
Checking spin
v0.9.8
Checking
untrusted v0.9.0
Checking
wasmi_arena v0.4.1
Checking
lazy_static v1.5.0
Compiling fnv
v1.0.7
Compiling
darling_core v0.20.11
Checking
soroban-wasmi
v0.31.1-soroban.20.0.1
Checking ring
v0.17.14
Checking
windows-targets
v0.53.5
Checking
windows_x86_64_msvc
v0.48.5
Compiling
wasmparser v0.116.1
Compiling clap
v4.6.0
Checking ark-ec
v0.4.2
Compiling
soroban-env-macros
v22.1.3
Checking
parking_lot v0.12.5
Checking
primeorder v0.13.6
Checking ed25519
v2.2.3
Checking
winapi-util v0.1.11
Checking
tracing-core v0.1.36
Checking bitflags
v2.11.0
Checking
unicode-width v0.1.14
Checking ethnum
v1.5.2
Checking keccak
v0.1.6
Checking
unicode-width v0.2.2
Checking winnow
v1.0.0
Checking
toml_parser
v1.1.0+spec-1.1.0
Checking sha3
v0.10.8
Compiling
soroban-spec v22.0.11
Checking
ed25519-dalek v2.2.0
Checking p256
v0.13.2
Checking
ark-bls12-381 v0.4.0
Checking
windows-targets
v0.48.5
Checking
windows-sys v0.60.2
Compiling
darling_macro v0.20.11
Checking anyhow
v1.0.102
Checking libc
v0.2.183
Compiling
prettyplease v0.2.37
Checking k256
v0.13.4
Checking
crossbeam-epoch
v0.9.18
Compiling soroban-b
uiltin-sdk-macros
v22.1.3
Compiling
soroban-sdk-macros
v22.0.11
Checking
toml_datetime
v1.1.0+spec-1.1.0
Checking
serde_spanned v1.1.0
Checking
unicode-segmentation
v1.13.1
Checking
hashbrown v0.12.3
Checking
stable_deref_trait
v1.2.1
Checking bytemuck
v1.25.0
Checking
hex-literal v0.4.1
Checking foldhash
v0.1.5
Checking
allocator-api2 v0.2.21
Checking adler2
v2.0.1
Checking
simd-adler32 v0.3.8
Compiling
clap_mangen v0.2.33
Checking
miniz_oxide v0.8.9
Checking
hashbrown v0.15.5
Compiling heck
v0.3.3
Checking rgb
v0.8.53
Checking indexmap
v1.9.3
Checking toml
v1.1.0+spec-1.1.0
Checking
crossbeam-deque v0.8.6
Compiling
soroban-spec-rust
v22.0.11
Checking
shared_child v1.1.1
Compiling darling
v0.20.11
Checking
windows-sys v0.48.0
Checking
crc32fast v1.5.0
Checking
same-file v1.0.6
Compiling
clap_complete v4.6.0
Checking
rustls-webpki v0.101.7
Checking sct
v0.7.1
Checking colored
v2.2.0
Checking
backtrace v0.3.76
Checking
crossterm_winapi
v0.9.1
Compiling
strum_macros v0.26.4
Checking castaway
v0.2.4
Checking regex
v1.12.3
Checking
twox-hash v1.6.3
Checking
env_filter v1.0.1
Compiling
soroban-sdk v22.0.11
Checking
toml_datetime v0.6.11
Checking
serde_spanned v0.6.9
Checking
itertools v0.13.0
Checking
quick-xml v0.39.2
Checking os_pipe
v1.2.3
Checking socket2
v0.6.3
Checking mio
v1.1.1
Checking normpath
v1.5.0
Compiling
tracing-attributes
v0.1.31
Compiling
tokio-macros v2.6.1
Compiling
derive_more v0.99.20
Checking
nibble_vec v0.1.0
Checking filetime
v0.2.27
Checking winnow
v0.7.15
Checking arrayvec
v0.7.6
Checking base64
v0.21.7
Checking
unicode-linebreak
v0.1.5
Checking
toml_write v0.1.2
Checking is_ci
v1.2.0
Checking
encode_unicode v1.0.0
Checking
error-code v3.3.2
Checking
endian-type v0.1.2
Checking
shared_thread v0.2.0
Checking
option-ext v0.2.0
Checking ryu
v1.0.23
Checking
byteorder v1.5.0
Checking
hashbrown v0.14.5
Checking leb128
v0.2.5
Checking bytes
v1.11.1
Checking
fallible-iterator
v0.2.0
Checking dashmap
v6.1.0
Checking gimli
v0.26.2
Checking tokio
v1.50.0
Checking
wasm-encoder v0.29.0
Checking
soroban-env-host
v22.1.3
Checking ruzstd
v0.5.0
Checking
compact_str v0.7.1
Checking dirs-sys
v0.4.1
Checking duct
v1.1.1
Checking
radix_trie v0.2.1
Checking drawille
v0.3.0
Checking
toml_edit v0.22.27
Checking console
v0.15.11
Checking
clipboard-win v5.4.1
Checking
supports-color v3.0.2
Checking textwrap
v0.16.2
Checking
rustls-pemfile v1.0.4
Checking
num-format v0.4.4
Checking tracing
v0.1.44
Checking tar
v0.4.45
Checking opener
v0.8.4
Checking
lcov2cobertura v1.0.9
Checking strum
v0.26.3
Checking
unicode-truncate
v1.1.0
Checking
env_logger v0.11.10
Checking
crossterm v0.27.0
Checking
backtrace-ext v0.2.1
Checking soroban-l
edger-snapshot
v22.0.11
Compiling
soroban-debugger
v0.1.0 (C:\Users\HomeP
C\Desktop\DRIPS
W3\soroban-debugger)
Checking rustls
v0.21.12
Checking walkdir
v2.5.0
Checking flate2
v1.1.9
Checking
rayon-core v1.13.0
Checking
cargo-config2 v0.1.44
Checking fs-err
v3.3.0
Checking camino
v1.2.2
Checking lru
v0.12.5
Checking
owo-colors v4.3.0
Checking
portable-atomic
v1.13.1
Compiling
walrus-macro v0.19.0
Checking
tracing-log v0.2.0
Checking
tracing-serde v0.2.0
Checking
termcolor v1.4.1
Checking
sharded-slab v0.1.7
Checking matchers
v0.2.0
Checking fd-lock
v4.0.4
Checking
crossbeam-channel
v0.5.15
Compiling
bytes-lit v0.0.5
Checking
itertools v0.12.1
Checking
quick-xml v0.26.0
Checking
nu-ansi-term v0.50.3
Checking
is-terminal v0.4.17
Checking
terminal_size v0.4.4
Checking home
v0.5.12
Checking schannel
v0.1.29
Compiling
miette-derive v7.6.0
Compiling
futures-macro v0.3.32
Compiling ctor
v0.2.9
Compiling
stability v0.2.1
Checking
thread_local v1.1.9
Checking lexopt
v0.3.2
Checking
futures-task v0.3.32
Checking
futures-core v0.3.32
Checking id-arena
v2.3.0
Checking
supports-unicode
v3.0.0
Checking
str_stack v0.1.0
Checking glob
v0.3.3
Checking
fallible-iterator
v0.3.0
Checking slab
v0.4.12
Checking
supports-hyperlinks
v3.2.0
Checking
number_prefix v0.4.0
Checking
shell-escape v0.1.5
Checking ruzstd
v0.8.2
Checking
cassowary v0.3.0
Checking
wasmparser v0.80.2
Checking gimli
v0.28.1
Checking ratatui
v0.26.3
Checking
cargo-llvm-cov v0.8.5
Checking
indicatif v0.17.11
Checking walrus
v0.20.3
Checking
futures-util v0.3.32
Checking miette
v7.6.0
Checking inferno
v0.11.21
Checking
tracing-subscriber
v0.3.23
Checking
rustls-native-certs
v0.6.3
Checking
rustyline v13.0.0
Checking
tokio-rustls v0.24.1
Checking rayon
v1.11.0
Checking object
v0.32.2
Checking toml
v0.8.23
Checking
textplots v0.8.7
Checking dirs
v5.0.1
Checking
wasmparser v0.121.2
Checking atty
v0.2.14
Checking
serde_path_to_error
v0.1.20
Checking chrono
v0.4.44
Checking
libloading v0.8.9
error: expected `;`,
found `signal`
--> src\analyzer\se
curity.rs:809:11
|
809 | signal
| ^
help: add `;` here
810 |
811 |
signal.suspicious = st
orage_calls_in_loops
> 0;
| ------
unexpected token
error[E0433]: failed
to resolve: could not
find `Renderer` in
`flamegraph`
--> src\profiler\fla
megraph.rs:81:49
|
81 | let mut
renderer = inferno::fl
amegraph::Renderer::de
fault()
|
^^^^^^^^
could not find
`Renderer` in
`flamegraph`
error[E0425]: cannot
find type
`SymbolicProfile` in
this scope
--> src\cli\command
s.rs:134:37
|
134 | fn symbolic_prof
ile_config(profile:
SymbolicProfile) ->
SymbolicConfig {
|
^^^^^^^^^^^^^^^ not
found in this scope
|
help: consider
importing this enum
|
1 + use crate::cli::
args::SymbolicProfile;
|
error[E0425]: cannot
find type
`SymbolicConfig` in
this scope
--> src\cli\command
s.rs:134:57
|
134 | fn symbolic_prof
ile_config(profile:
SymbolicProfile) ->
SymbolicConfig {
|
^^^^^^^^^^^^^^ not
found in this scope
|
help: consider
importing this struct
|
1 + use crate::analy
zer::symbolic::Symboli
cConfig;
|
error[E0433]: failed
to resolve: use of
undeclared type
`SymbolicProfile`
--> src\cli\command
s.rs:136:9
|
136 |
SymbolicProfile::Fast
=> SymbolicConfig::fas
t(),
|
^^^^^^^^^^^^^^^ use
of undeclared type
`SymbolicProfile`
|
help: consider
importing this enum
|
1 + use crate::cli::
args::SymbolicProfile;
|
error[E0433]: failed
to resolve: use of
undeclared type
`SymbolicConfig`
--> src\cli\command
s.rs:136:34
|
136 |
SymbolicProfile::Fast
=> SymbolicConfig::fas
t(),
|
^^^^^^^^^^^^^^ use of
undeclared type
`SymbolicConfig`
|
help: consider
importing this struct
|
1 + use crate::analy
zer::symbolic::Symboli
cConfig;
|
error[E0433]: failed
to resolve: use of
undeclared type
`SymbolicProfile`
--> src\cli\command
s.rs:137:9
|
137 | Symbolic
Profile::Balanced => S
ymbolicConfig::balance
d(),
|
^^^^^^^^^^^^^^^ use
of undeclared type
`SymbolicProfile`
|
help: consider
importing this enum
|
1 + use crate::cli::
args::SymbolicProfile;
|
error[E0433]: failed
to resolve: use of
undeclared type
`SymbolicConfig`
--> src\cli\command
s.rs:137:38
|
137 | Symbolic
Profile::Balanced => S
ymbolicConfig::balance
d(),
|
^^^^^^^^^^^^^^ use of
undeclared type
`SymbolicConfig`
|
help: consider
importing this struct
|
1 + use crate::analy
zer::symbolic::Symboli
cConfig;
|
error[E0433]: failed
to resolve: use of
undeclared type
`SymbolicProfile`
--> src\cli\command
s.rs:138:9
|
138 |
SymbolicProfile::Deep
=> SymbolicConfig::dee
p(),
|
^^^^^^^^^^^^^^^ use
of undeclared type
`SymbolicProfile`
|
help: consider
importing this enum
|
1 + use crate::cli::
args::SymbolicProfile;
|
error[E0433]: failed
to resolve: use of
undeclared type
`SymbolicConfig`
--> src\cli\command
s.rs:138:34
|
138 |
SymbolicProfile::Deep
=> SymbolicConfig::dee
p(),
|
^^^^^^^^^^^^^^ use of
undeclared type
`SymbolicConfig`
|
help: consider
importing this struct
|
1 + use crate::analy
zer::symbolic::Symboli
cConfig;
|
error[E0425]: cannot
find type
`SymbolicConfig` in
this scope
--> src\cli\command
s.rs:142:54
|
142 | fn symbolic_conf
ig_from_args(args:
&SymbolicArgs) ->
SymbolicConfig {
|
^^^^^^^^^^^^^^ not
found in this scope
|
help: consider
importing this struct
|
1 + use crate::analy
zer::symbolic::Symboli
cConfig;
|
error[E0425]: cannot
find value `engine`
in this scope
--> src\cli\command
s.rs:226:33
|
213 | _engine:
&mut DebuggerEngine,
| -------
`_engine` defined here
...
226 | display_inst
ruction_context(engine
, 3);
|
^^^^^^
|
help: the leading
underscore in
`_engine` marks it as
unused, consider
renaming it to
`engine`
|
213 - _engine:
&mut DebuggerEngine,
213 + engine:
&mut DebuggerEngine,
|
error[E0425]: cannot
find value `engine`
in this scope
--> src\cli\command
s.rs:242:58
|
213 | _engine:
&mut DebuggerEngine,
| -------
`_engine` defined here
...
242 | "n"
| "next" | "s" |
"step" | "into" | ""
=> engine.step_into(),
|
^^^^^^
|
help: the leading
underscore in
`_engine` marks it as
unused, consider