forked from rust-lang/crater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
13730 lines (13718 loc) · 644 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
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
[server]
# The list of GitHub users allowed to interact with the GitHub bot
# You can mix usernames and teams
bot-acl = [
"rust-lang/infra",
"rust-lang/release",
"rust-lang/compiler",
"rust-lang/libs",
]
[server.labels]
# Remove all labels matching this regex when applying new labels
remove = "^S-"
# Automatically apply the following labels to issues/pull requests
experiment-queued = "S-waiting-on-crater"
experiment-completed = "S-waiting-on-review"
# This section contains the list of tested crates when defining an experiment
# with `--crate-select demo`.
[demo-crates]
crates = ["lazy_static"]
github-repos = ["brson/hello-rs"]
[sandbox]
# Maximum amount of RAM allowed during builds
memory-limit = "1536M" # 1.5G
# These sections allows to customize how crater treats specific crates/repos
#
# The available options for each crate/repo are:
# - skip (bool): ignore this crate/repo
# - skip-tests (bool): don't run tests in this crate/repo
# - quiet (bool): don't kill after two minutes without output
# - update-lockfile (bool): update the lockfile even if the crate has one
# - broken (bool): treat a Crater error on this crate/repo as a build
# failure (typically the crate is broken in an
# unusual way and we want to indicate the failure
# is 'permissible', while still building it if the
# failure is resolved in the future)
# Please add a comment along with each entry explaining the reasons of the
# changes, thanks!
[crates]
# crate_name = { option = true }
BrewStillery = { skip = true } #automatic
ConExpression = { skip-tests = true } #automatic
CoreFoundation-sys = { skip = true } #automatic
FPS = { skip = true } #automatic
GSL = { skip = true } #automatic
IOKit-sys = { skip = true } #automatic
KLPhash = { skip = true } #automatic
Lattice = { skip = true } #automatic
MacTypes-sys = { skip-tests = true } #automatic
Memoirs = { skip = true } #automatic
NicoNicoNi = { skip = true } #automatic
SLSR = { skip = true } #automatic
YAPL = { skip-tests = true } #automatic
about-system = { skip = true } #automatic
accel = { skip = true } #automatic
accel-core = { skip = true } #automatic
accelerate-provider = { skip = true } #automatic
accelerate-src = { skip = true } #automatic
accessors = { skip = true } #automatic
acestream_client = { skip = true } #automatic
aci_ppm = { skip = true } #automatic
acid-state = { skip-tests = true } #automatic
acl-sys = { skip = true } #automatic
aclui-sys = { skip = true } #automatic
acorn = { skip = true } #automatic
act = { skip-tests = true } #automatic
activation = { skip = true } #automatic
activeds-sys = { skip = true } #automatic
actix = { skip-tests = true } # flaky test
actix-form-data = { skip-tests = true } #automatic
actix-redis = { skip-tests = true } #automatic
actix-web-sql-identity = { skip-tests = true } #automatic
actors = { skip = true } #automatic
adamantium = { skip = true } #automatic
adapton-lab = { skip = true } #automatic
adbackup = { skip-tests = true } #automatic
add-remote = { skip-tests = true } #automatic
addr2line = { skip = true } #automatic
adept2 = { skip = true } #automatic
adept2-sys = { skip = true } #automatic
adhesion = { skip-tests = true } #automatic
adi = { skip = true } #automatic
adivon = { skip = true } #automatic
admin_bot = { skip = true } #automatic
adobe-cmap-parser = { skip-tests = true } #automatic
adorn = { skip = true } #automatic
adsiid-sys = { skip = true } #automatic
advpack-sys = { skip = true } #automatic
aerial = { skip = true } #automatic
aerospike = { skip-tests = true } #automatic
aesni = { skip = true } #automatic
af_unix = { skip = true } #automatic
afl = { skip = true } #automatic
aflak_cake = { skip-tests = true } #automatic
aflak_imgui = { skip-tests = true } #automatic
aflak_imgui_file_explorer = { skip = true } #automatic
aflak_plot = { skip-tests = true } #automatic
agnes = { skip-tests = true } #automatic
ahadmin-sys = { skip = true } #automatic
ai = { skip-tests = true } # may fail due to randomness
ai_kit = { skip-tests = true } #automatic
aidanhs-tmp-parse-generics-shim = { skip = true } #automatic
aio = { skip = true } #automatic
aio-bindings = { skip = true } #automatic
airspy = { skip = true } #automatic
ak8963 = { skip-tests = true } #automatic
alcs = { skip-tests = true } #automatic
alerts = { skip-tests = true } #automatic
alex-minigrep = { skip-tests = true } #automatic
alfred-rs = { skip-tests = true } #automatic
algebra = { skip = true } #automatic
algo = { skip = true } #automatic
algorithmia = { skip = true } #automatic
algs4 = { skip = true } #automatic
alice-sys = { skip = true } #automatic
aligned = { skip-tests = true } #automatic
alink-sys = { skip = true } #automatic
allegro = { skip = true } #automatic
allegro-sys = { skip = true } #automatic
allegro_acodec = { skip = true } #automatic
allegro_acodec-sys = { skip = true } #automatic
allegro_audio = { skip = true } #automatic
allegro_audio-sys = { skip = true } #automatic
allegro_color = { skip = true } #automatic
allegro_color-sys = { skip = true } #automatic
allegro_dialog = { skip = true } #automatic
allegro_dialog-sys = { skip = true } #automatic
allegro_examples = { skip = true } #automatic
allegro_font = { skip = true } #automatic
allegro_font-sys = { skip = true } #automatic
allegro_image = { skip = true } #automatic
allegro_image-sys = { skip = true } #automatic
allegro_primitives = { skip = true } #automatic
allegro_primitives-sys = { skip = true } #automatic
allegro_ttf = { skip = true } #automatic
allegro_ttf-sys = { skip = true } #automatic
alloc-chibios = { skip = true } #automatic
alloc-tls = { skip = true } #automatic
alloc_system = { skip = true } #automatic
alloc_uefi = { skip = true } #automatic
allocator = { skip = true } #automatic
allocator_stub = { skip = true } #automatic
allocators = { skip = true } #automatic
aloft = { skip = true } #automatic
alpaca = { skip = true } #automatic
alpm = { skip-tests = true } #automatic
alpm-sys = { skip = true } #automatic
alsa = { skip = true } #automatic
alsa-sys = { skip = true } #automatic
althea_kernel_interface = { skip-tests = true } #automatic
alto = { skip-tests = true } #automatic
alumina = { skip = true } # flaky build
aluminum = { skip-tests = true } #automatic
ama = { skip = true } #automatic
amath = { skip = true } #automatic
amber = { skip-tests = true } #automatic
ambisonic = { skip = true } #automatic
amcl = { skip-tests = true } #automatic
amethyst = { skip = true } #automatic
amethyst-rhusics = { skip = true } #automatic
amethyst_audio = { skip = true } #automatic
amethyst_core = { skip = true } #automatic
amethyst_ui = { skip = true } #automatic
ami = { skip-tests = true } #automatic
amiwo = { skip = true } #automatic
amp = { skip = true } #automatic
amqpr-api = { skip = true } #automatic
amsi = { skip = true } #automatic
amstrmid-sys = { skip = true } #automatic
an = { skip = true } #automatic
analyticord = { skip-tests = true } #automatic
anchor-experiment = { skip-tests = true } #automatic
android_ffi = { skip = true } #automatic
android_injected_glue = { skip = true } #automatic
android_liblog-sys = { skip = true } #automatic
android_log = { skip = true } #automatic
android_log-sys = { skip = true } #automatic
anduin = { skip = true } #automatic
anima-engine = { skip = true } #automatic
anl = { skip-tests = true } #automatic
ansi = { skip = true } #automatic
any-arena = { skip = true } #automatic
ao = { skip = true } #automatic
ao_rs = { skip = true } #automatic
ape = { skip-tests = true } #automatic
api = { skip = true } #automatic
api-ms-win-net-isolation-l1-1-0-sys = { skip = true } #automatic
apiai = { skip-tests = true } #automatic
apidll-sys = { skip = true } #automatic
apns = { skip = true } #automatic
apns2 = { skip-tests = true } #automatic
apply_attr = { skip = true } #automatic
apply_pub = { skip = true } #automatic
appmgmts-sys = { skip = true } #automatic
appmgr-sys = { skip = true } #automatic
appnotify-sys = { skip = true } #automatic
approvals = { skip-tests = true } #automatic
appscraps = { skip-tests = true } #automatic
appscraps_dll = { skip-tests = true } #automatic
appscraps_module = { skip-tests = true } #automatic
apt-pkg-native = { skip = true } #automatic
aquaengine = { skip = true } #automatic
arc = { skip = true } #automatic
arc-reactor = { skip-tests = true } #automatic
arch-audit = { skip-tests = true } #automatic
arduino_mkrzero = { skip = true } #automatic
ares = { skip = true } #automatic
argmin = { skip = true } #automatic
argon = { skip = true } #automatic
argonaut = { skip = true } #automatic
argonautica = { skip = true } #automatic
argonautica-c = { skip = true } #automatic
argparse-rs = { skip = true } #automatic
aries = { skip-tests = true } #automatic
arrayfire = { skip = true } #automatic
arrayfire_serde = { skip = true } #automatic
arrow = { skip = true } #automatic
artc = { skip = true } #automatic
artfuldolphinaddsone = { skip-tests = true } #automatic
arthas_plugin = { skip = true } #automatic
article-date-extractor = { skip-tests = true } #automatic
artifact-app = { skip = true } #automatic
artnet_protocol = { skip-tests = true } #automatic
aruba_ripple = { skip-tests = true } #automatic
asap = { skip-tests = true } #automatic
asap_deps_jsonwebtoken = { skip = true } #automatic
ascii-canvas = { skip = true } #automatic
ascii_num = { skip-tests = true } #automatic
ascii_tree = { skip-tests = true } #automatic
asciifier = { skip = true } #automatic
asciii = { skip = true } #automatic
asink = { skip = true } #automatic
asio = { skip = true } #automatic
askalono = { skip-tests = true } #automatic
asn1 = { skip = true } #automatic
assembler = { skip = true } #automatic
assert_ng = { skip = true } #automatic
assets = { skip = true } #automatic
assimp = { skip = true } #automatic
assimp-sys = { skip = true } #automatic
ast_debug = { skip = true } #automatic
astar = { skip = true } #automatic
aster = { skip = true } #automatic
asteroid = { skip = true } #automatic
astrup = { skip-tests = true } #automatic
asycfilt-sys = { skip = true } #automatic
async = { skip = true } #automatic
async-byteorder = { skip = true } #automatic
async-codec-util = { skip = true } #automatic
async-dnssd = { skip = true } #automatic
async-http-client = { skip-tests = true } #automatic
async-mesos = { skip-tests = true } #automatic
async-ssh = { skip = true } #automatic
atk-sys = { skip-tests = true } #automatic
atlas = { skip = true } #automatic
atomic-stamped-ptr = { skip = true } #automatic
atomic_cell = { skip = true } #automatic
atomicwrites = { skip-tests = true } #automatic
atpco-types = { skip = true } #automatic
atsam4lc8c = { skip = true } #automatic
atsamd21-hal = { skip = true } #automatic
atty = { skip-tests = true } #automatic
aubio = { skip = true } #automatic
audact = { skip = true } #automatic
audio_thread_priority = { skip = true } #automatic
audiobaseprocessingobject-sys = { skip = true } #automatic
audioeng-sys = { skip = true } #automatic
audiomediatypecrt-sys = { skip = true } #automatic
audit-filter = { skip-tests = true } #automatic
audrey = { skip = true } #automatic
augeas = { skip = true } #automatic
augeas_sys = { skip = true } #automatic
austenite = { skip = true } #automatic
authy = { skip-tests = true } #automatic
authz-sys = { skip = true } #automatic
auto_correct = { skip-tests = true } #automatic
autograd = { skip = true } #automatic
autogui = { skip = true } #automatic
autoit = { skip = true } #automatic
autollvm = { skip = true } #automatic
automata = { skip = true } #automatic
autopilot = { skip-tests = true } #automatic
autotools = { skip-tests = true } #automatic
aux_ulib-sys = { skip = true } #automatic
avifil32-sys = { skip = true } #automatic
avirus = { skip-tests = true } #automatic
avl_tree = { skip = true } #automatic
avr-libc = { skip = true } #automatic
avr-libcore = { skip = true } #automatic
avr-test-suite = { skip = true } #automatic
avr-vm = { skip-tests = true } #automatic
avrd = { skip = true } #automatic
avrt-sys = { skip = true } #automatic
aw-fel = { skip = true } #automatic
awesome-bot = { skip = true } #automatic
aws-sdk-rust = { skip = true } #automatic
aws_kms_crypt = { skip-tests = true } #automatic
axal = { skip = true } #automatic
axle = { skip = true } #automatic
ayzim = { skip = true } #automatic
ayzim-macros = { skip = true } #automatic
azure = { skip = true } #automatic
azure-functions = { skip = true } #automatic
azure-functions-codegen = { skip = true } #automatic
azure-functions-shared = { skip = true } #automatic
azure-sdk-rust = { skip = true } #automatic
azure_sdk_for_rust = { skip = true } #automatic
baal = { skip = true } #automatic
backblaze-b2 = { skip-tests = true } #automatic
backend = { skip = true } #automatic
badger = { skip = true } #automatic
baduk = { skip = true } #automatic
bakervm = { skip = true } #automatic
bandit = { skip-tests = true } #automatic
bank = { skip = true } #automatic
bao = { skip-tests = true } #automatic
bap = { skip = true } #automatic
bap-sys = { skip = true } #automatic
bar = { skip = true } #automatic
bare = { skip = true } #automatic
barfly = { skip = true } #automatic
bark = { skip = true } #automatic
barnacl = { skip = true } #automatic
barnacl_sys = { skip = true } #automatic
base32768 = { skip = true } #automatic
base_url = { skip-tests = true } #automatic
basehangul = { skip = true } #automatic
basesrv-sys = { skip = true } #automatic
bassert = { skip = true } #automatic
batch = { skip-tests = true } #automatic
batsim-rs = { skip = true } #automatic
battlecats = { skip = true } #automatic
bayer = { skip = true } #automatic
bcc = { skip = true } #automatic
bcc-sys = { skip = true } #automatic
bcm2709-spi = { skip = true } #automatic
bcndecode = { skip = true } #automatic
bcrypt-sys = { skip = true } #automatic
bdrck = { skip = true } #automatic
bdrck_config = { skip-tests = true } #automatic
beagle = { skip = true } #automatic
beam_file = { skip-tests = true } #automatic
beamdpr = { skip-tests = true } #automatic
bear = { skip = true } #automatic
bear-lib-terminal = { skip = true } #automatic
bear-lib-terminal-sys = { skip = true } #automatic
bearssl = { skip = true } #automatic
bearssl-sys = { skip = true } #automatic
beast = { skip = true } #automatic
beep = { skip-tests = true } #automatic
beginner_tools = { skip-tests = true } #automatic
bellman = { skip-tests = true } #automatic
benchpmc = { skip-tests = true } #automatic
benfred-read-process-memory = { skip = true } #automatic
bengreen = { skip = true } #automatic
benzene-2d = { skip = true } #automatic
ber = { skip = true } #automatic
bert = { skip = true } #automatic
better_range = { skip = true } #automatic
bfc = { skip = true } #automatic
bfgs = { skip-tests = true } #automatic
bgmrank-cli = { skip = true } #automatic
bgzip = { skip-tests = true } #automatic
bigbro = { skip-tests = true } #automatic
bigtable = { skip = true } #automatic
binance-async = { skip-tests = true } #automatic
binary_macros = { skip = true } #automatic
binaryen = { skip = true } #automatic
binaryen-sys = { skip = true } #automatic
bincode-no-std = { skip = true } #automatic
bincode_core = { skip = true } #automatic
bincode_ext = { skip = true } #automatic
bincrypt = { skip = true } #automatic
bindata = { skip = true } #automatic
bindgen_plugin = { skip = true } #automatic
bing-rs = { skip = true } #automatic
bins = { skip = true } #automatic
bip = { skip = true } #automatic
biscuit = { skip-tests = true } #automatic
bisetmap = { skip-tests = true } #automatic
bit_crusher = { skip = true } #automatic
bitboard = { skip = true } #automatic
bitbuf = { skip = true } #automatic
bitcask-rs = { skip = true } #automatic
bitcoin-consensus = { skip = true } #automatic
bitcoin_rpc_client = { skip-tests = true } #automatic
bitex = { skip = true } #automatic
bitfield-rle = { skip = true } #automatic
bitflags-associated-constants = { skip = true } #automatic
bitmaptrie = { skip = true } #automatic
bitrange = { skip = true } #automatic
bitrange_plugin = { skip = true } #automatic
bits = { skip = true } #automatic
bits-sys = { skip = true } #automatic
bitsparrow-derive = { skip-tests = true } #automatic
bitstream = { skip = true } #automatic
bklyn = { skip = true } #automatic
black-jack = { skip = true } #automatic
blacken = { skip = true } #automatic
blacklog = { skip = true } #automatic
bladerf = { skip = true } #automatic
blender-exporter = { skip-tests = true } #automatic
blkid = { skip = true } #automatic
blkid-sys = { skip = true } #automatic
blobstore = { skip-tests = true } #automatic
block = { skip = true } #automatic
blockchain = { skip = true } #automatic
blockcounter = { skip = true } #automatic
blockcounter-utils = { skip = true } #automatic
bloom = { skip-tests = true } #automatic
blosc = { skip = true } #automatic
blosc-sys = { skip = true } #automatic
bluepill-usbcdc = { skip = true } #automatic
bluepill-usbhid = { skip = true } #automatic
bluetooth-serial-port = { skip = true } #automatic
bluetoothapis-sys = { skip = true } #automatic
blurmac = { skip = true } #automatic
bme680 = { skip-tests = true } #automatic
bmemcached = { skip-tests = true } #automatic
bmfont = { skip = true } #automatic
bmp = { skip-tests = true } #automatic
bmp-encoder = { skip-tests = true } #automatic
bn = { skip-tests = true } #automatic
bn-plus = { skip-tests = true } #automatic
bns = { skip-tests = true } #automatic
body-image = { skip-tests = true } #automatic
boehm_gc = { skip = true } #automatic
bolt11 = { skip = true } #automatic
boo = { skip-tests = true } #automatic
boomphf = { skip-tests = true } #automatic
bootloader = { skip = true } #automatic
borealis_codegen = { skip = true } #automatic
bosonnlp = { skip-tests = true } #automatic
botan = { skip = true } #automatic
botan-sys = { skip = true } #automatic
botocore_parser = { skip = true } #automatic
bounded-integer-plugin = { skip = true } #automatic
bowling = { skip-tests = true } #automatic
boxcars = { skip = true } #automatic
boxed = { skip = true } #automatic
boxxy = { skip-tests = true } #automatic
brainfuck_macros = { skip = true } #automatic
brainheck = { skip = true } #automatic
braintree = { skip-tests = true } #automatic
brassfibre = { skip-tests = true } #automatic
breakpad-symbols = { skip-tests = true } #automatic
breakpoint = { skip = true } #automatic
brokkr = { skip-tests = true } #automatic
brotli-decompressor = { skip = true } #automatic
bsalloc = { skip = true } #automatic
bson-rs = { skip = true } #automatic
bspline = { skip = true } #automatic
bst = { skip = true } #automatic
bstring_macros = { skip = true } #automatic
bswap = { skip = true } #automatic
bthprops-sys = { skip = true } #automatic
btrfs = { skip = true } #automatic
btrfs-dedupe = { skip = true } #automatic
btrfs2 = { skip = true } #automatic
btrup = { skip = true } #automatic
bucket-limiter = { skip-tests = true } #automatic
buf_file = { skip = true } #automatic
bufferoverflow-sys = { skip = true } #automatic
bufferoverflowu-sys = { skip = true } #automatic
build-helper = { skip-tests = true } #automatic
build_epoch = { skip = true } #automatic
build_metadata = { skip = true } #automatic
build_script_file_gen = { skip-tests = true } #automatic
buildable = { skip = true } #automatic
buildchain = { skip = true } #automatic
built = { skip-tests = true } #automatic
bullet = { skip = true } #automatic
bullet_core = { skip = true } #automatic
bullet_macros = { skip = true } #automatic
bulletinboard = { skip = true } #automatic
bundler = { skip-tests = true } #automatic
bungie = { skip = true } #automatic
burning-sanders = { skip = true } #automatic
buzz = { skip = true } #automatic
bwapi = { skip = true } #automatic
bwapi-sys = { skip = true } #automatic
bytebuffer-new = { skip = true } #automatic
bytekey = { skip = true } #automatic
byteorder_core_io = { skip = true } #automatic
c-certitude = { skip = true } #automatic
c3 = { skip = true } #automatic
c3_clang_extensions = { skip = true } #automatic
c_str = { skip = true } #automatic
cabal-rs = { skip-tests = true } #automatic
cabinet-sys = { skip = true } #automatic
cabocha = { skip = true } #automatic
caca = { skip = true } #automatic
caca-sys = { skip = true } #automatic
cached_file_view = { skip-tests = true } #automatic
cachedir = { skip-tests = true } #automatic
cachy = { skip = true } #automatic
caesar = { skip-tests = true } #automatic
caesarlib = { skip-tests = true } # flaky test
caffe = { skip = true } #automatic
caffrey = { skip = true } #automatic
cafs = { skip = true } #automatic
cage = { skip-tests = true } #automatic
cagra = { skip = true } #automatic
cairo-sys = { skip = true } #automatic
cake = { skip-tests = true } #automatic
cal = { skip = true } #automatic
calculator = { skip = true } #automatic
calldown = { skip = true } #automatic
camera_capture = { skip = true } #automatic
canarywatcher = { skip = true } #automatic
caniuse = { skip = true } #automatic
caniuse-serde = { skip = true } #automatic
canonical_json = { skip = true } #automatic
capabilities = { skip = true } #automatic
capcom0 = { skip = true } #automatic
caper = { skip = true } #automatic
capnp-nonblock = { skip = true } #automatic
capnp-rpc = { skip = true } #automatic
capsicum = { skip = true } #automatic
capstone3 = { skip = true } #automatic
capstone_rust = { skip = true } #automatic
capture = { skip = true } #automatic
carboxyl_time = { skip-tests = true } #automatic
carboxyl_window = { skip = true } #automatic
carddav = { skip = true } #automatic
cargo = { skip-tests = true } #automatic
cargo-asm = { skip-tests = true } #automatic
cargo-benchcmp = { skip = true } #automatic
cargo-check = { skip-tests = true } #automatic
cargo-culture-kit = { skip-tests = true } #automatic
cargo-deb = { skip-tests = true } #automatic
cargo-deploy = { skip = true } #automatic
cargo-doc-coverage = { skip = true } #automatic
cargo-edit = { skip-tests = true } #automatic
cargo-edit-locally = { skip-tests = true } #automatic
cargo-erlangapp = { skip-tests = true } #automatic
cargo-extras = { skip = true } #automatic
cargo-fel4 = { skip-tests = true } #automatic
cargo-fix = { skip-tests = true } #automatic
cargo-generate = { skip-tests = true } #automatic
cargo-incremental = { skip = true } #automatic
cargo-ipcgen-swift = { skip = true } #automatic
cargo-kcov = { skip-tests = true } #automatic
cargo-kythe = { skip = true } #automatic
cargo-license = { skip-tests = true } #automatic
cargo-local-registry = { skip-tests = true } #automatic
cargo-maj = { skip = true } #automatic
cargo-make = { skip-tests = true } #automatic
cargo-mod = { skip-tests = true } #automatic
cargo-name = { skip = true } #automatic
cargo-nuget = { skip-tests = true } #automatic
cargo-open = { skip = true } #automatic
cargo-pack = { skip-tests = true } #automatic
cargo-readme = { skip-tests = true } #automatic
cargo-registry = { skip = true } #automatic
cargo-script = { skip-tests = true } #automatic
cargo-ship = { skip = true } #automatic
cargo-tarpaulin = { skip = true } #automatic
cargo-test-junit = { skip = true } #automatic
cargo-todox = { skip-tests = true } #automatic
cargo-update = { skip = true } #automatic
cargo-vendor = { skip-tests = true } #automatic
cargo-version = { skip-tests = true } #automatic
cargo-wix = { skip-tests = true } #automatic
cargo_metadata = { skip-tests = true } #automatic
cargo_rub = { skip = true } #automatic
carp = { skip = true } #automatic
carrier = { skip = true } #automatic
carto = { skip = true } #automatic
cassandra = { skip = true } #automatic
cassandra-cpp = { skip = true } #automatic
cassandra-cpp-sys = { skip = true } #automatic
cassandra-sys = { skip = true } #automatic
castle-game = { skip = true } #automatic
catalog = { skip-tests = true } #automatic
catapult = { skip = true } #automatic
catfs = { skip = true } #automatic
catt-core = { skip = true } #automatic
cattlerustler = { skip = true } #automatic
cavity = { skip-tests = true } #automatic
cbor-lite = { skip = true } #automatic
cbor-no-std = { skip = true } #automatic
cbt = { skip = true } #automatic
cc = { skip-tests = true } # flaky test
cc-queue = { skip = true } #automatic
cconst = { skip-tests = true } #automatic
ccv = { skip = true } #automatic
cdb = { skip-tests = true } #automatic
cdbd = { skip = true } #automatic
cef-sys = { skip = true } #automatic
cell-gc = { skip = true } #automatic
cellsplit = { skip-tests = true } #automatic
celly = { skip = true } #automatic
ceph = { skip = true } #automatic
ceph-rbd = { skip = true } #automatic
ceph-rust = { skip = true } #automatic
ceph-safe-disk = { skip-tests = true } #automatic
ceph_usage = { skip = true } #automatic
ceramic = { skip = true } #automatic
cereal = { skip = true } #automatic
cereal_macros = { skip = true } #automatic
cernan = { skip = true } #automatic
certadm-sys = { skip = true } #automatic
certca-sys = { skip = true } #automatic
certcli-sys = { skip = true } #automatic
certidl-sys = { skip = true } #automatic
certitude = { skip = true } #automatic
certpoleng-sys = { skip = true } #automatic
cervus_bridge = { skip = true } #automatic
cexpr = { skip = true } #automatic
cfasttext-sys = { skip = true } #automatic
cff = { skip-tests = true } #automatic
cfg-regex = { skip = true } #automatic
cfgmgr32-sys = { skip = true } #automatic
cfile-rs = { skip = true } #automatic
cfrp = { skip = true } #automatic
cgl = { skip = true } #automatic
cgroup = { skip = true } #automatic
cgroup-sys = { skip = true } #automatic
cgroups = { skip = true } #automatic
chakracore = { skip = true } #automatic
chakracore-sys = { skip = true } #automatic
changecase = { skip = true } #automatic
chanvese = { skip-tests = true } #automatic
chaos = { skip = true } #automatic
char_classifier = { skip = true } #automatic
char_set = { skip = true } #automatic
charmhelpers = { skip = true } #automatic
chars_input = { skip = true } #automatic
chashmap = { skip-tests = true } #automatic
chatbot = { skip = true } #automatic
checked_cast = { skip-tests = true } #automatic
checksum = { skip-tests = true } #automatic
chemfiles = { skip = true } #automatic
chemfiles-sys = { skip = true } #automatic
chessground = { skip = true } #automatic
chill = { skip-tests = true } #automatic
chip8 = { skip = true } #automatic
chipmunk = { skip = true } #automatic
chipmunk-sys = { skip = true } #automatic
chipper = { skip = true } #automatic
chiter = { skip-tests = true } #automatic
chord3 = { skip = true } #automatic
chromaprint = { skip = true } #automatic
cicada = { skip-tests = true } #automatic
cifar_10_loader = { skip-tests = true } #automatic
citadel = { skip-tests = true } #automatic
citra-scripting = { skip = true } #automatic
citrus = { skip = true } #automatic
citymapper = { skip-tests = true } #automatic
cl-sys = { skip = true } #automatic
clacks = { skip = true } #automatic
clacks_crypto = { skip = true } #automatic
clacks_mtproto = { skip = true } #automatic
clacks_transport = { skip = true } #automatic
clamav = { skip = true } #automatic
clams = { skip-tests = true } #automatic
clang = { skip = true } #automatic
clang-sys = { skip = true } #automatic
clap-log-flag = { skip = true } #automatic
clapme = { skip-tests = true } #automatic
clarity = { skip-tests = true } #automatic
claxon = { skip-tests = true } #automatic
clear-coat = { skip = true } #automatic
clementine = { skip = true } #automatic
clerk = { skip = true } #automatic
clfft = { skip = true } #automatic
clfsmgmt-sys = { skip = true } #automatic
clfsw32-sys = { skip = true } #automatic
cli = { skip = true } #automatic
click = { skip = true } #automatic
climatempo = { skip-tests = true } #automatic
clingo = { skip = true } #automatic
clingo-sys = { skip-tests = true } #automatic
clipboard = { skip = true } #automatic
clipboard-master = { skip = true } #automatic
clipboard-win = { skip = true } #automatic
clipboard2 = { skip = true } #automatic
clippy = { skip = true } #automatic
clippy-mini-macro-test = { skip = true } #automatic
clippy_lints = { skip = true } #automatic
clit-rs = { skip-tests = true } #automatic
clj_rub = { skip = true } #automatic
clonedir_lib = { skip-tests = true } #automatic
cluColor = { skip-tests = true } #automatic
cluLamansh = { skip = true } #automatic
cluatoi = { skip-tests = true } #automatic
clusapi-sys = { skip = true } #automatic
clutter = { skip = true } #automatic
cmdtaglib = { skip = true } #automatic
cntk = { skip = true } #automatic
cntr-fuse = { skip = true } #automatic
cntr-nix = { skip-tests = true } #automatic
coaster = { skip = true } #automatic
coaster-blas = { skip = true } #automatic
coaster-nn = { skip = true } #automatic
cobalt = { skip-tests = true } #automatic
cobalt-bin = { skip-tests = true } #automatic
cocoa = { skip = true } #automatic
codegenta = { skip = true } #automatic
codesign = { skip = true } #automatic
codeviz_macros = { skip-tests = true } #automatic
codgenhelp = { skip = true } #automatic
cognitive = { skip = true } #automatic
cognitive-aesthetics = { skip = true } #automatic
cognitive-device-manager = { skip = true } #automatic
cognitive-exhibitor = { skip = true } #automatic
cognitive-frames = { skip = true } #automatic
cognitive-graphics = { skip = true } #automatic
cognitive-inputs = { skip = true } #automatic
cognitive-outputs = { skip = true } #automatic
cognitive-qualia = { skip = true } #automatic
cognitive-renderer-gl = { skip = true } #automatic
cognitive-wayland-frontend = { skip = true } #automatic
cogs = { skip-tests = true } #automatic
coinbase-pro-rs = { skip-tests = true } #automatic
coinnect = { skip-tests = true } # flaky test
colerr = { skip = true } #automatic
collapse-crate = { skip = true } #automatic
collect = { skip = true } #automatic
collectd-plugin = { skip = true } #automatic
collection_traits = { skip = true } #automatic
collenchyma = { skip = true } #automatic
collenchyma-blas = { skip = true } #automatic
collenchyma-nn = { skip = true } #automatic
color = { skip = true } #automatic
color-rs = { skip = true } #automatic
colorhash256 = { skip = true } #automatic
colors = { skip = true } #automatic
colour = { skip-tests = true } #automatic
com = { skip = true } #automatic
com-rs = { skip = true } #automatic
combup = { skip = true } #automatic
comic = { skip-tests = true } #automatic
commandext = { skip = true } #automatic
commands = { skip = true } #automatic
commoncrypto = { skip = true } #automatic
commoncrypto-sys = { skip = true } #automatic
comms = { skip-tests = true } #automatic
comp = { skip-tests = true } #automatic
compact_macros = { skip-tests = true } #automatic
compacts = { skip = true } #automatic
compacts-bits = { skip = true } #automatic
compacts-dict = { skip = true } #automatic
compass-sprite = { skip = true } #automatic
competitive-programming-rs = { skip-tests = true } #automatic
compile_msg = { skip = true } #automatic
compiler-builtins-snapshot = { skip = true } #automatic
compiler_error = { skip = true } #automatic
composer = { skip-tests = true } #automatic
comppkgsup-sys = { skip = true } #automatic
compressor = { skip = true } #automatic
compstui-sys = { skip = true } #automatic
comsvcs-sys = { skip = true } #automatic
conc = { skip = true } #automatic
concat_bytes = { skip = true } #automatic
concurrent = { skip = true } #automatic
concurrent-hashmap = { skip = true } #automatic
concurrent-stack = { skip = true } #automatic
conduit-conditional-get = { skip = true } #automatic
conduit-json-parser = { skip = true } #automatic
conduit-router = { skip = true } #automatic
conduit-static = { skip = true } #automatic
config_fairy = { skip = true } #automatic
config_struct = { skip = true } #automatic
configure = { skip = true } #automatic
confluence = { skip = true } #automatic
conftaal = { skip-tests = true } #automatic
confusion = { skip = true } #automatic
connected_socket = { skip = true } #automatic
consistency = { skip = true } #automatic
console-traits = { skip = true } #automatic
const-concat = { skip = true } #automatic
constexpr = { skip = true } #automatic
constrained = { skip-tests = true } #automatic
construct = { skip = true } #automatic
consul = { skip-tests = true } #automatic
consul_rust = { skip = true } #automatic
container-what = { skip-tests = true } #automatic
containers = { skip = true } #automatic
context_bind = { skip-tests = true } #automatic
control-flow = { skip-tests = true } #automatic
convertible = { skip = true } #automatic
convex_hull = { skip = true } #automatic
copra = { skip = true } #automatic
copy_dir = { skip-tests = true } #automatic
copying_gc = { skip = true } #automatic
copypasteck = { skip = true } #automatic
corange-rs = { skip = true } #automatic
core-foundation = { skip = true } #automatic
core-graphics = { skip = true } #automatic
core-midi = { skip = true } #automatic
core-midi-sys = { skip = true } #automatic
core-nightly = { skip = true } #automatic
core-text = { skip = true } #automatic
core-utils = { skip = true } #automatic
core_collections = { skip = true } #automatic
core_io = { skip = true } #automatic
core_rustc-serialize = { skip = true } #automatic
coreaudio-rs = { skip = true } #automatic
coremidi = { skip = true } #automatic
coremidi-sys = { skip = true } #automatic
coresimd = { skip = true } #automatic
corguids-sys = { skip = true } #automatic
corollary = { skip = true } #automatic
coroutines = { skip = true } #automatic
correngine-sys = { skip = true } #automatic
cortex = { skip = true } #automatic
cortex-m-log = { skip-tests = true } #automatic
cortex-m-quickstart = { skip = true } #automatic
cortex-m-rt = { skip = true } #automatic
cortex-m-rtfm = { skip = true } #automatic
cortex-m-semihosting = { skip-tests = true } #automatic
cosmo = { skip = true } #automatic
cosmogony = { skip = true } #automatic
couchbase = { skip = true } #automatic
couchbase-sys = { skip = true } #automatic
counting-networks = { skip = true } #automatic
coveralls-api = { skip-tests = true } #automatic
cow = { skip = true } #automatic
cowrc = { skip = true } #automatic
coyoneda = { skip = true } #automatic
cp211x_uart = { skip = true } #automatic
cpal = { skip = true } #automatic
cplex-sys = { skip = true } #automatic
cppStream = { skip = true } #automatic
cpp_codegen = { skip = true } #automatic
cpp_demangle = { broken = true } # dependency yanked
cpp_to_rust = { skip = true } #automatic
cpp_to_rust_generator = { skip = true } #automatic
cpp_utils = { skip-tests = true } #automatic
cpr = { skip = true } #automatic
cpufreq = { skip = true } #automatic
cpuid = { skip = true } #automatic
cpuprofiler = { skip = true } #automatic
cpython = { skip = true } #automatic
cpython-json = { skip = true } #automatic
cql-rust = { skip = true } #automatic
cql_bindgen = { skip = true } #automatic
cracker = { skip-tests = true } #automatic
cranelift-wasm = { skip = true } #automatic
crast = { skip = true } #automatic
crate-deps = { skip = true } #automatic
crates-index = { skip-tests = true } #automatic
crates-io-changes = { skip-tests = true } #automatic
crayon = { skip-tests = true } #automatic
crayon-audio = { skip = true } #automatic
crc32 = { skip = true } #automatic
crc64-rs = { skip = true } #automatic
crdt = { skip = true } #automatic
credui-sys = { skip = true } #automatic
cretonne-faerie = { skip = true } #automatic
cretonne-wasm = { skip = true } #automatic
crfsuite = { skip-tests = true } #automatic
crfsuite-sys = { skip = true } #automatic
criterion-plot = { skip-tests = true } #automatic
croaring = { skip = true } #automatic
croaring-sys = { skip = true } #automatic
cron-bugfix-version = { skip = true } #automatic
cron_rs = { skip = true } #automatic
cronparse = { skip-tests = true } #automatic
crossterm = { skip-tests = true } #automatic
crow_engine = { skip = true } #automatic
crowbar = { skip = true } #automatic
crowbook = { skip = true } #automatic
crowbook-localize = { skip = true } #automatic
crslmnl = { skip = true } #automatic
crtq = { skip-tests = true } #automatic
crustacean = { skip = true } #automatic
crustacean-executable = { skip = true } #automatic
crustacean-plugin = { skip = true } #automatic
cryptdll-sys = { skip = true } #automatic
cryptnet-sys = { skip = true } #automatic
crypto-ops = { skip = true } #automatic
crypto_proto = { skip = true } #automatic
crypto_vault = { skip = true } #automatic
cryptominisat = { skip = true } #automatic
cryptosphere = { skip = true } #automatic
cryptouri = { skip = true } #automatic
cryptovec = { skip-tests = true } #automatic
cryptsetup = { skip = true } #automatic
cryptsetup-rs = { skip = true } #automatic
cryptui-sys = { skip = true } #automatic
cryptxml-sys = { skip = true } #automatic
cscapi-sys = { skip = true } #automatic
cscdll-sys = { skip = true } #automatic
csfdapi = { skip = true } #automatic
csfml-audio-sys = { skip = true } #automatic
csfml-graphics-sys = { skip = true } #automatic
csfml-network-sys = { skip = true } #automatic
csfml-system-sys = { skip = true } #automatic
csfml-window-sys = { skip = true } #automatic
cson = { skip = true } #automatic
cssparser = { skip = true } #automatic
cstr_core = { skip = true } #automatic
csv = { skip-tests = true } # flaky test
csv-sniffer = { skip-tests = true } #automatic
csvgen = { skip = true } #automatic
csvroll = { skip = true } #automatic
ctf = { skip = true } #automatic
cttw = { skip = true } #automatic
ctx = { skip-tests = true } # tests depends on timing
ctypes = { skip = true } #automatic
cublas = { skip = true } #automatic
cublas-sys = { skip = true } #automatic
cucumber = { skip-tests = true } #automatic
cuda = { skip = true } #automatic
cuda-sys = { skip = true } #automatic
cuda_blas = { skip = true } #automatic
cuda_dnn = { skip = true } #automatic
cudd-sys = { skip = true } #automatic
cudnn = { skip = true } #automatic
cudnn-sys = { skip = true } #automatic
cue = { skip = true } #automatic
cue-sys = { skip = true } #automatic
cuivre = { skip = true } #automatic
cult = { skip = true } #automatic
cumath = { skip = true } #automatic
cupi = { skip = true } #automatic
cupi_shift = { skip = true } #automatic
cups-sys = { skip = true } #automatic
curryrs = { skip = true } #automatic
curs = { skip = true } #automatic
curse = { skip = true } #automatic
cursebox = { skip = true } #automatic
curses-line-ui = { skip = true } #automatic
curses-sys = { skip = true } #automatic
cursive = { skip = true } #automatic
cursive_calendar_view = { skip = true } #automatic
cursive_hexview = { skip = true } #automatic
cursive_table_view = { skip = true } #automatic
cursive_tree_view = { skip = true } #automatic
curtain = { skip = true } #automatic
cute = { skip-tests = true } #automatic
cwa = { skip = true } #automatic
cyborg = { skip = true } #automatic
czmq = { skip = true } #automatic
czmq-sys = { skip = true } #automatic
czt = { skip = true } #automatic
d2d1-sys = { skip = true } #automatic
d3d10-sys = { skip = true } #automatic
d3d10_1-sys = { skip = true } #automatic
d3dcsx-sys = { skip = true } #automatic
d3dcsxd-sys = { skip = true } #automatic
dacite-winit = { skip-tests = true } #automatic
daemonize = { skip-tests = true } #automatic
daemonizer = { skip-tests = true } #automatic
dagon = { skip = true } #automatic
dardan_ui = { skip = true } #automatic
dark = { skip = true } #automatic
darkengine = { skip = true } #automatic
dars = { skip = true } #automatic
dash2html = { skip = true } #automatic
dat = { skip = true } #automatic
data_chain = { skip = true } #automatic
datafusion = { skip = true } #automatic
datafusion-rustyline = { skip = true } #automatic
datastore-sys = { skip = true } #automatic
datetime_macros = { skip = true } #automatic
daummap = { skip-tests = true } #automatic
davclnt-sys = { skip = true } #automatic
davincibot = { skip-tests = true } #automatic
dawr = { skip = true } #automatic
dayu = { skip-tests = true } #automatic
dazeus = { skip-tests = true } #automatic
db-accelerate = { skip = true } #automatic
dbench = { skip = true } #automatic
dbgeng-sys = { skip = true } #automatic
dbkit-engine = { skip = true } #automatic
dbox = { skip-tests = true } #automatic
dbus = { skip-tests = true } #automatic
dbus-bytestream = { skip-tests = true } #automatic
dbus-codegen = { skip-tests = true } #automatic
dbus-rs = { skip = true } #automatic
dbus-tokio = { skip-tests = true } #automatic
dciman32-sys = { skip = true } #automatic
dcmimu = { skip = true } #automatic
dcombu = { skip = true } #automatic
dcomp-sys = { skip = true } #automatic
ddc-winapi = { skip = true } #automatic
ddcutil = { skip = true } #automatic
ddcutil-sys = { skip = true } #automatic
ddg = { skip = true } #automatic
ddp = { skip = true } #automatic
ddraw-sys = { skip = true } #automatic
dds-rs = { skip-tests = true } #automatic
deb-version = { skip = true } #automatic
debcargo = { skip = true } #automatic
debugln = { skip = true } #automatic
debugserver-types = { skip = true } #automatic
decision_tree = { skip = true } #automatic