v8 147.4.0

Rust bindings to V8
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# @generated from build/rust/std/BUILD.gn.hbs by tools/crates/gnrt. Do not edit!

import("//build/rust/cargo_crate.gni")

config("max_codegen_units") {
  # Force one CGU per module (it won't actually be 10,000). This is useful for
  # compiler-builtins, which should have one intrinsic defined per object file.
  # We put this in a config to override is_official_build's setting of
  # -Ccodegen-units=1.
  rustflags = [ "-Ccodegen-units=10000" ]
}

cargo_crate("addr2line") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/addr2line-0.25.1/src/lib.rs"
  enabled = !is_win
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/addr2line-0.25.1/src/bin/addr2line.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/addr2line-0.25.1/src/frame.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/addr2line-0.25.1/src/function.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/addr2line-0.25.1/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/addr2line-0.25.1/src/line.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/addr2line-0.25.1/src/loader.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/addr2line-0.25.1/src/lookup.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/addr2line-0.25.1/src/unit.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2018"
  cargo_pkg_version = "0.25.1"
  cargo_pkg_name = "addr2line"
  cargo_pkg_description =
      "A cross-platform symbolication library written in Rust, using `gimli`"
  cargo_pkg_repository = "https://github.com/gimli-rs/addr2line"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  if (!is_win) {
    deps += [
      ":gimli",
      ":rustc_std_workspace_alloc",
      ":rustc_std_workspace_core",
    ]
  }
  aliased_deps = {
    alloc = ":rustc_std_workspace_alloc"
    core = ":rustc_std_workspace_core"
  }
  features = [
    "alloc",
    "core",
    "rustc-dep-of-std",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "addr2line_bindings"
    cpp_namespace = "rs_addr2line"
    deps = []
    deps += []
    if (!is_win) {
      deps += [
        ":gimli_bindings",
        ":rustc_std_workspace_alloc_bindings",
        ":rustc_std_workspace_core_bindings",
      ]
    }
  }
}
cargo_crate("adler2") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/adler2-2.0.1/src/lib.rs"
  enabled = !is_win
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/adler2-2.0.1/src/algo.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/adler2-2.0.1/src/lib.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2021"
  cargo_pkg_version = "2.0.1"
  cargo_pkg_authors = "Jonas Schievink <jonasschievink@gmail.com>, oyvindln <oyvindln@users.noreply.github.com>"
  cargo_pkg_name = "adler2"
  cargo_pkg_description =
      "A simple clean-room implementation of the Adler-32 checksum"
  cargo_pkg_repository = "https://github.com/oyvindln/adler2"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  if (!is_win) {
    deps += [ ":rustc_std_workspace_core" ]
  }
  aliased_deps = {
    core = ":rustc_std_workspace_core"
  }
  features = [
    "core",
    "rustc-dep-of-std",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "adler2_bindings"
    cpp_namespace = "rs_adler2"
    deps = []
    deps += []
    if (!is_win) {
      deps += [ ":rustc_std_workspace_core_bindings" ]
    }
  }
}
cargo_crate("alloc") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/lib.rs"
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/alloc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/borrow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/boxed.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/boxed/convert.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/boxed/iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/boxed/thin.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/bstr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/binary_heap/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/append.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/borrow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/borrow/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/dedup_sorted_iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/fix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/map.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/map/entry.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/map/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/mem.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/merge_iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/navigate.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/node.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/node/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/remove.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/search.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/set.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/set/entry.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/set/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/set_val.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/btree/split.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/linked_list.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/linked_list/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/drain.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/extract_if.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/into_iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/iter_mut.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/spec_extend.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/spec_from_iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/splice.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/collections/vec_deque/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/ffi/c_str.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/ffi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/fmt.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/intrinsics.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/lib.miri.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/raw_vec/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/raw_vec/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/rc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/slice.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/str.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/string.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/sync.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/task.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/cow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/drain.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/extract_if.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/in_place_collect.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/in_place_drop.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/into_iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/is_zero.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/partial_eq.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/peek_mut.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/set_len_on_drop.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/spec_extend.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/spec_from_elem.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/spec_from_iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/spec_from_iter_nested.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/vec/splice.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/wtf8/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/alloc/src/wtf8/tests.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "0.0.0"
  cargo_pkg_name = "alloc"
  cargo_pkg_description = "The Rust core allocation and collections library"
  cargo_pkg_repository = "https://github.com/rust-lang/rust.git"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":compiler_builtins",
    ":core",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "alloc_bindings"
    cpp_namespace = "rs_alloc"
    deps = []
    deps += [
      ":compiler_builtins_bindings",
      ":core_bindings",
    ]
  }
}
cargo_crate("cfg_if") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/cfg-if-1.0.4/src/lib.rs"
  sources = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/cfg-if-1.0.4/src/lib.rs" ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2018"
  cargo_pkg_version = "1.0.4"
  cargo_pkg_authors = "Alex Crichton <alex@alexcrichton.com>"
  cargo_pkg_name = "cfg-if"
  cargo_pkg_description = "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted."
  cargo_pkg_repository = "https://github.com/rust-lang/cfg-if"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":rustc_std_workspace_core",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  aliased_deps = {
    core = ":rustc_std_workspace_core"
  }
  features = [
    "core",
    "rustc-dep-of-std",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "cfg_if_bindings"
    cpp_namespace = "rs_cfg_if"
    deps = []
    deps += [ ":rustc_std_workspace_core_bindings" ]
  }
}
cargo_crate("compiler_builtins") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/lib.rs"
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/aarch64_outline_atomics.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/arm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/avr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/add.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/cmp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/conv.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/div.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/extend.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/mul.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/pow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/sub.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/traits.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/float/trunc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/hexagon.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/addsub.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/big.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/bswap.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/leading_zeros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/mul.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/sdiv.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/shift.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/specialized_div_rem/asymmetric.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/specialized_div_rem/binary_long.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/specialized_div_rem/delegate.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/specialized_div_rem/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/specialized_div_rem/norm_shift.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/specialized_div_rem/trifecta.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/trailing_zeros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/traits.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/int/udiv.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/lib.miri.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/math/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/mem/impls.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/mem/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/mem/x86_64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/probestack.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/riscv.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/sync/arm_linux.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/sync/arm_thumb_shared.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/sync/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/sync/thumbv6k.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/x86.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/x86_64.rs",
  ]
  inputs = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/libm_helper.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/acos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/acosf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/acosh.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/acoshf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/arch/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/arch/i586.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/arch/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/arch/wasm32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/arch/x86/detect.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/arch/x86/fma.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/arch/x86.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/asin.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/asinf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/asinh.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/asinhf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/atan.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/atan2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/atan2f.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/atanf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/atanh.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/atanhf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/cbrt.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/cbrtf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/ceil.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/copysign.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/cos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/cosf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/cosh.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/coshf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/erf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/erff.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/exp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/exp10.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/exp10f.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/exp2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/exp2f.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/expf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/expm1.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/expm1f.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/expo2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/fabs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/fdim.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/floor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/fma.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/fmin_fmax.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/fminimum_fmaximum.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/fminimum_fmaximum_num.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/fmod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/frexp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/frexpf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/ceil.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/copysign.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/fabs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/fdim.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/floor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/fma.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/fma_wide.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/fmax.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/fmaximum.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/fmaximum_num.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/fmin.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/fminimum.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/fminimum_num.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/fmod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/rint.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/round.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/scalbn.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/sqrt.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/generic/trunc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/hypot.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/hypotf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/ilogb.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/ilogbf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/j0.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/j0f.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/j1.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/j1f.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/jn.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/jnf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/k_cos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/k_cosf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/k_expo2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/k_expo2f.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/k_sin.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/k_sinf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/k_tan.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/k_tanf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/ldexp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/lgamma.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/lgamma_r.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/lgammaf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/lgammaf_r.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/log.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/log10.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/log10f.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/log1p.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/log1pf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/log2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/log2f.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/logf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/modf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/modff.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/nextafter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/nextafterf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/pow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/powf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/rem_pio2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/rem_pio2_large.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/rem_pio2f.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/remainder.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/remainderf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/remquo.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/remquof.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/rint.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/round.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/roundeven.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/scalbn.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/sin.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/sincos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/sincosf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/sinf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/sinh.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/sinhf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/sqrt.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/support/big/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/support/big.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/support/env.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/support/feature_detect.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/support/float_traits.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/support/hex_float.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/support/int_traits/narrowing_div.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/support/int_traits.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/support/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/support/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/support/modular.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/tan.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/tanf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/tanh.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/tanhf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/tgamma.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/tgammaf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../../libm/src/math/trunc.rs",
  ]
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "0.1.160"
  cargo_pkg_authors = "Alex Crichton <alex@alexcrichton.com>, Amanieu d'Antras <amanieu@gmail.com>, Jorge Aparicio <japaricious@gmail.com>, Trevor Gross <tg@trevorgross.com>"
  cargo_pkg_name = "compiler_builtins"
  cargo_pkg_description = "Compiler intrinsics used by the Rust compiler."
  cargo_pkg_repository = "https://github.com/rust-lang/compiler-builtins"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
    "//build/config/coverage:default_coverage",
  ]
  library_configs += [
    "//build/config/compiler:no_chromium_code",
    ":max_codegen_units",
  ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":core",
    "//build/rust/std:std_build_deps",
  ]
  features = [
    "compiler-builtins",
    "default",
    "rustc-dep-of-std",
  ]
  build_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/build.rs"
  build_sources = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/build.rs" ]
  build_script_inputs = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/compiler-builtins/compiler-builtins/src/../configure.rs" ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "compiler_builtins_bindings"
    cpp_namespace = "rs_compiler_builtins"
    deps = []
    deps += [ ":core_bindings" ]
  }
}
cargo_crate("core") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/lib.rs"
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/alloc/global.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/alloc/layout.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/alloc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/any.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/arch.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/array/ascii.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/array/drain.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/array/equality.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/array/iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/array/iter/iter_inner.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/array/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ascii.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ascii/ascii_char.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/asserting.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/async_iter/async_iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/async_iter/from_iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/async_iter/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/bool.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/borrow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/bstr/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/bstr/traits.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/cell.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/cell/lazy.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/cell/once.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/char/convert.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/char/decode.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/char/methods.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/char/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/clone.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/clone/uninit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/cmp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/cmp/bytewise.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/contracts.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/convert/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/convert/num.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/default.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/error.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/escape.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_str.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/primitives.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/va_list.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/fmt/builders.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/fmt/float.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/fmt/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/fmt/nofloat.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/fmt/num.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/fmt/num_buffer.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/fmt/rt.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/future/async_drop.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/future/future.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/future/into_future.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/future/join.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/future/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/future/pending.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/future/poll_fn.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/future/ready.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/hash/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/hash/sip.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/hint.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/index.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/internal_macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/intrinsics/bounds.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/intrinsics/fallback.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/intrinsics/gpu.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/intrinsics/mir.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/intrinsics/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/intrinsics/simd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/io/borrowed_buf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/io/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/array_chunks.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/by_ref_sized.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/chain.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/cloned.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/copied.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/cycle.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/enumerate.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/filter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/filter_map.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/flatten.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/fuse.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/inspect.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/intersperse.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/map.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/map_while.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/map_windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/peekable.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/rev.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/scan.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/skip.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/skip_while.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/step_by.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/take.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/take_while.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/adapters/zip.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/range.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/sources.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/sources/empty.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/sources/from_coroutine.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/sources/from_fn.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/sources/generator.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/sources/once.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/sources/once_with.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/sources/repeat.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/sources/repeat_n.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/sources/repeat_with.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/sources/successors.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/traits/accum.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/traits/collect.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/traits/double_ended.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/traits/exact_size.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/traits/iterator.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/traits/marker.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/traits/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/iter/traits/unchecked_iterator.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/lib.miri.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/macros/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/marker.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/marker/variance.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/mem/drop_guard.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/mem/manually_drop.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/mem/maybe_dangling.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/mem/maybe_uninit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/mem/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/mem/transmutability.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/mem/type_info.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/net/display_buffer.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/net/ip_addr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/net/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/net/parser.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/net/socket_addr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/bignum.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/dec2flt/common.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/dec2flt/decimal.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/dec2flt/decimal_seq.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/dec2flt/float.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/dec2flt/fpu.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/dec2flt/lemire.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/dec2flt/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/dec2flt/parse.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/dec2flt/slow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/dec2flt/table.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/diy_float.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/error.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/f128.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/f16.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/f32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/f64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/flt2dec/decoder.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/flt2dec/estimator.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/flt2dec/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/flt2dec/strategy/dragon.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/flt2dec/strategy/grisu.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/fmt.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/int_bits.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/int_log10.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/int_macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/int_sqrt.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/libm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/niche_types.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/nonzero.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/overflow_panic.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/saturating.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/shells/legacy_int_modules.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/uint_macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/num/wrapping.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/arith.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/async_function.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/bit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/control_flow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/coroutine.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/deref.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/drop.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/function.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/index.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/index_range.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/range.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/reborrow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/try_trait.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ops/unsize.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/option.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/os/darwin/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/os/darwin/objc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/os/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/panic.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/panic/location.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/panic/panic_info.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/panic/unwind_safe.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/panicking.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/pat.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/pin.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/pin/unsafe_pinned.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/prelude/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/prelude/v1.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/primitive.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/primitive_docs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/profiling.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/alignment.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/const_ptr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/metadata.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/mut_ptr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/non_null.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/unique.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/random.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/range.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/range/iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/range/legacy.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/result.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/ascii.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/cmp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/index.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/iter/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/memchr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/rotate.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/select.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/shared/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/shared/pivot.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/shared/smallsort.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/stable/drift.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/stable/merge.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/stable/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/stable/quicksort.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/stable/tiny.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/unstable/heapsort.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/unstable/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/sort/unstable/quicksort.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/slice/specialize.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/str/converts.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/str/count.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/str/error.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/str/iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/str/lossy.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/str/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/str/pattern.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/str/traits.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/str/validations.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/sync/atomic.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/sync/exclusive.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/sync/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/task/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/task/poll.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/task/ready.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/task/wake.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/time.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/tuple.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ub_checks.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/unicode/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/unicode/printable.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/unicode/unicode_data.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/unit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/unsafe_binder.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/wtf8.rs",
  ]
  inputs = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/examples/README.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/examples/dot_product.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/examples/matrix_inversion.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/examples/nbody.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/examples/spectral_norm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/alias.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/cast.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/core_simd_docs.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/fmt.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/iter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/masks.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/ops/assign.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/ops/deref.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/ops/shift_scalar.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/ops/unary.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/select.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/simd/cmp/eq.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/simd/cmp/ord.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/simd/cmp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/float.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/int.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/simd/num/uint.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/simd/num.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/simd/prelude.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/simd/ptr/const_ptr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/simd/ptr/mut_ptr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/simd/ptr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/swizzle.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/swizzle_dyn.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/to_bytes.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/vector.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/vendor/arm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/vendor/loongarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/vendor/powerpc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/vendor/wasm32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/vendor/x86.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/src/vendor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/autoderef.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/cast.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/f32_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/f64_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/i16_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/i32_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/i64_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/i8_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/isize_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/layout.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/mask_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/mask_ops_impl/mask16.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/mask_ops_impl/mask32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/mask_ops_impl/mask64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/mask_ops_impl/mask8.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/mask_ops_impl/mask_macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/mask_ops_impl/masksize.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/mask_ops_impl/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/masked_load_store.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/masks.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/ops_macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/pointers.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/round.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/swizzle.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/swizzle_dyn.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/to_bytes.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/try_from_slice.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/u16_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/u32_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/u64_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/u8_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/tests/usize_ops.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../portable-simd/crates/core_simd/webdriver.json",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/MISSING.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/README.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/missing-x86.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/aarch64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/aarch64/mte.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/aarch64/neon/generated.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/aarch64/neon/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/aarch64/prefetch.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/aarch64/test_support.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/amdgpu/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm/dsp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm/neon.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm/sat.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm/simd32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/barrier/common.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/barrier/cp15.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/barrier/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/barrier/not_mclass.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/barrier/v8.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/hints.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/neon/generated.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/neon/load_tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/neon/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/neon/shift_and_insert_tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/neon/store_tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/neon/table_lookup_tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/arm_shared/test_support.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/core_arch_docs.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/hexagon/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/hexagon/v128.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/hexagon/v64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/loongarch32/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/loongarch64/lasx/generated.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/loongarch64/lasx/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/loongarch64/lasx/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/loongarch64/lasx/types.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/loongarch64/lsx/generated.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/loongarch64/lsx/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/loongarch64/lsx/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/loongarch64/lsx/types.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/loongarch64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/loongarch_shared/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/mips/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/mips/msa.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/nvptx/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/nvptx/packed.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/powerpc/altivec.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/powerpc/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/powerpc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/powerpc/vsx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/powerpc64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/powerpc64/vsx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/riscv32/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/riscv32/zk.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/riscv64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/riscv64/zk.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/riscv_shared/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/riscv_shared/p.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/riscv_shared/zb.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/riscv_shared/zk.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/s390x/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/s390x/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/s390x/vector.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/simd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/test.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/wasm32/atomic.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/wasm32/memory.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/wasm32/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/wasm32/relaxed_simd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/wasm32/simd128.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/abm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/adx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/aes.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bf16.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bitalg.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512cd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512dq.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512fp16.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512ifma.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512vbmi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512vbmi2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512vnni.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avx512vpopcntdq.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/avxneconvert.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/bmi1.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/bmi2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/bswap.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/bt.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/cpuid.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/eflags.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/f16c.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/fma.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/fxsr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/gfni.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/kl.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/pclmulqdq.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/rdrand.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/rdtsc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/rtm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/sha.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/sse.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/sse2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/sse3.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/sse41.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/sse42.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/sse4a.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/ssse3.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/tbm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/test.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/vaes.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/vpclmulqdq.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86/xsave.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/abm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/adx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/amx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512bw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512f.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/avx512fp16.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/bmi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/bmi2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/bswap.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/bt.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/cmpxchg16b.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/fxsr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/rdrand.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/sse.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/sse2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/sse41.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/sse42.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/tbm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/../../stdarch/crates/core_arch/src/x86_64/xsave.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/error.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_char.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_double.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_float.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_int.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_long.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_longlong.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_schar.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_short.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_uchar.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_uint.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_ulong.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_ulonglong.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_ushort.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ffi/c_void.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/fmt/fmt_trait_method_doc.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/macros/panic.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/docs/INFO.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/docs/add.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/docs/addr.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/docs/as_ref.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/docs/as_uninit_ref.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/docs/as_uninit_slice.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/docs/is_null.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/ptr/docs/offset.md",
  ]
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "0.0.0"
  cargo_pkg_name = "core"
  cargo_pkg_description = "The Rust Core Library"
  cargo_pkg_repository = "https://github.com/rust-lang/rust.git"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
    "//build/config/coverage:default_coverage",
  ]
  library_configs += [
    "//build/config/compiler:no_chromium_code",
    "//build/rust:panic_immediate_abort",
  ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [ "//build/rust/std:std_build_deps" ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "core_bindings"
    cpp_namespace = "rs_core"
    deps = []
  }
}
cargo_crate("getopts") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/getopts-0.2.24/src/lib.rs"
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/getopts-0.2.24/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/getopts-0.2.24/src/tests/mod.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2021"
  cargo_pkg_version = "0.2.24"
  cargo_pkg_authors = "The Rust Project Developers"
  cargo_pkg_name = "getopts"
  cargo_pkg_description = "getopts-like option parsing"
  cargo_pkg_repository = "https://github.com/rust-lang/getopts"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":rustc_std_workspace_core",
    ":rustc_std_workspace_std",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  aliased_deps = {
    core = ":rustc_std_workspace_core"
    std = ":rustc_std_workspace_std"
  }
  features = [
    "core",
    "rustc-dep-of-std",
    "std",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "getopts_bindings"
    cpp_namespace = "rs_getopts"
    deps = []
    deps += [
      ":rustc_std_workspace_core_bindings",
      ":rustc_std_workspace_std_bindings",
    ]
  }
}
cargo_crate("gimli") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/lib.rs"
  enabled = !is_win
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/arch.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/common.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/constants.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/endianity.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/leb128.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/abbrev.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/addr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/aranges.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/cfi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/dwarf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/endian_reader.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/endian_slice.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/index.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/line.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/lists.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/loclists.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/lookup.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/op.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/pubnames.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/pubtypes.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/reader.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/relocate.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/rnglists.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/str.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/unit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/util.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/read/value.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/test_util.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/abbrev.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/cfi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/dwarf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/endian_vec.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/line.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/loc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/op.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/range.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/relocate.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/section.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/str.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/unit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/gimli-0.32.3/src/write/writer.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2018"
  cargo_pkg_version = "0.32.3"
  cargo_pkg_name = "gimli"
  cargo_pkg_description =
      "A library for reading and writing the DWARF debugging format."
  cargo_pkg_repository = "https://github.com/gimli-rs/gimli"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  if (!is_win) {
    deps += [
      ":rustc_std_workspace_alloc",
      ":rustc_std_workspace_core",
    ]
  }
  aliased_deps = {
    alloc = ":rustc_std_workspace_alloc"
    core = ":rustc_std_workspace_core"
  }
  features = [
    "read",
    "read-core",
    "rustc-dep-of-std",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "gimli_bindings"
    cpp_namespace = "rs_gimli"
    deps = []
    deps += []
    if (!is_win) {
      deps += [
        ":rustc_std_workspace_alloc_bindings",
        ":rustc_std_workspace_core_bindings",
      ]
    }
  }
}
cargo_crate("hashbrown") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/lib.rs"
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/control/bitmask.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/control/group/generic.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/control/group/lsx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/control/group/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/control/group/neon.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/control/group/sse2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/control/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/control/tag.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/external_trait_impls/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/external_trait_impls/rayon/helpers.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/external_trait_impls/rayon/map.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/external_trait_impls/rayon/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/external_trait_impls/rayon/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/external_trait_impls/rayon/set.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/external_trait_impls/rayon/table.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/external_trait_impls/serde.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/hasher.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/map.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/raw/alloc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/raw/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/raw_entry.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/rustc_entry.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/scopeguard.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/set.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/table.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/hashbrown-0.16.1/src/util.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2021"
  cargo_pkg_version = "0.16.1"
  cargo_pkg_authors = "Amanieu d'Antras <amanieu@gmail.com>"
  cargo_pkg_name = "hashbrown"
  cargo_pkg_description = "A Rust port of Google's SwissTable hash map"
  cargo_pkg_repository = "https://github.com/rust-lang/hashbrown"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":rustc_std_workspace_alloc",
    ":rustc_std_workspace_core",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  aliased_deps = {
    alloc = ":rustc_std_workspace_alloc"
    core = ":rustc_std_workspace_core"
  }
  features = [
    "alloc",
    "core",
    "nightly",
    "rustc-dep-of-std",
    "rustc-internal-api",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "hashbrown_bindings"
    cpp_namespace = "rs_hashbrown"
    deps = []
    deps += [
      ":rustc_std_workspace_alloc_bindings",
      ":rustc_std_workspace_core_bindings",
    ]
  }
}
cargo_crate("libc") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/lib.rs"
  enabled = !is_win
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/fuchsia/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/fuchsia/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/fuchsia/riscv64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/fuchsia/x86_64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/hermit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/aix/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/aix/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libc/signal.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libc/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libpthread/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libpthread/pthread_/introspection.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libpthread/pthread_/pthread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libpthread/pthread_/pthread_impl.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libpthread/pthread_/pthread_spis.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libpthread/pthread_/qos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libpthread/pthread_/sched.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libpthread/pthread_/spawn.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libpthread/pthread_/stack_np.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libpthread/sys/_pthread/_pthread_types.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libpthread/sys/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/libpthread/sys/qos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/xnu/arm/_mcontext.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/xnu/i386/_mcontext.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/xnu/mach/arm/_structs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/xnu/mach/i386/_structs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/xnu/mach/machine/_structs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/xnu/mach/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/xnu/machine/_mcontext.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/xnu/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/xnu/sys/_types/_ucontext.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/xnu/sys/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/apple/xnu/sys/signal.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/bionic_libc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/bionic_libc/pthread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/bionic_libc/sys/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/bionic_libc/sys/socket.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/bionic_libc/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/common/bsd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/common/freebsd_like.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/common/linux_like/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/common/linux_like/pthread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/common/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/common/netbsd_like.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/common/posix/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/common/posix/pthread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/common/posix/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/common/solarish.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/cygwin/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/cygwin/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/dragonfly/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/dragonfly/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/emscripten/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/emscripten/pthread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/emscripten/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/espidf/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/freebsd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/freebsd/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/fuchsia/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/fuchsia/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/glibc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/glibc/posix/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/glibc/sysdeps/nptl/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/glibc/sysdeps/nptl/pthread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/glibc/sysdeps/unix/linux/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/glibc/sysdeps/unix/linux/net/route.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/glibc/sysdeps/unix/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/haiku/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/haiku/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/hermit_abi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/horizon/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/hurd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/illumos/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/illumos/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/l4re/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/linux_uapi/linux/can.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/linux_uapi/linux/can/bcm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/linux_uapi/linux/can/j1939.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/linux_uapi/linux/can/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/linux_uapi/linux/keyctl.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/linux_uapi/linux/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/linux_uapi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/musl/arch/generic/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/musl/arch/mips/bits/socket.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/musl/arch/mips/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/musl/arch/mips64/bits/socket.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/musl/arch/mips64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/musl/arch/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/musl/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/musl/pthread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/musl/sys/socket.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/musl/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/netbsd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/netbsd/net/if_.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/netbsd/sys/ipc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/netbsd/sys/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/netbsd/sys/statvfs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/netbsd/sys/time.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/netbsd/sys/timex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/netbsd/sys/types.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/netbsd/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/netbsd/utmp_.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/netbsd/utmpx_.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/newlib/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/newlib/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/nto/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/nto/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/nuttx/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/nuttx/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/openbsd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/openbsd/sys/ipc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/openbsd/sys/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/openbsd/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/redox/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/relibc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/relibc/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/rtems/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/sgx/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/sgx/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/solaris/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/solaris/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/solid/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/teeos/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/trusty/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/uclibc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/uclibc/pthread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/uclibc/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/ucrt/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/vita/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/vita/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/vxworks/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/vxworks/unistd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/wasi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/new/xous/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/primitives.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/psp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/solid/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/solid/arm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/solid/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/switch.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/teeos/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/trusty.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/types.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/aix/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/aix/powerpc64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/apple/b32/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/apple/b64/aarch64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/apple/b64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/apple/b64/x86_64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/apple/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/dragonfly/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/arm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/freebsd11/b32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/freebsd11/b64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/freebsd11/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/freebsd12/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/freebsd12/x86_64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/freebsd13/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/freebsd13/x86_64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/freebsd14/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/freebsd14/x86_64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/freebsd15/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/freebsd15/x86_64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/powerpc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/powerpc64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/riscv64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/x86.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/freebsd/x86_64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/freebsdlike/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/netbsd/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/netbsd/arm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/netbsd/mips.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/netbsd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/netbsd/powerpc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/netbsd/riscv64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/netbsd/sparc64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/netbsd/x86.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/netbsd/x86_64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/openbsd/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/openbsd/arm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/openbsd/mips64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/openbsd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/openbsd/powerpc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/openbsd/powerpc64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/openbsd/riscv64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/openbsd/sparc64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/openbsd/x86.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/bsd/netbsdlike/openbsd/x86_64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/cygwin/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/haiku/b32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/haiku/b64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/haiku/bsd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/haiku/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/haiku/native.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/haiku/x86_64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/hurd/b32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/hurd/b64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/hurd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/android/b32/arm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/android/b32/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/android/b32/x86/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/android/b64/aarch64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/android/b64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/android/b64/riscv64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/android/b64/x86_64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/android/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/emscripten/lfs64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/emscripten/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/arch/generic/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/arch/mips/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/arch/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/arch/powerpc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/arch/sparc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b32/arm/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b32/csky/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b32/m68k/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b32/mips/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b32/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b32/powerpc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b32/riscv32/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b32/sparc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b32/x86/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/aarch64/ilp32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/aarch64/lp64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/loongarch64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/mips64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/powerpc64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/riscv64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/s390x.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/sparc64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/b64/x86_64/x32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/gnu/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b32/arm/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b32/hexagon.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b32/mips/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b32/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b32/powerpc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b32/riscv32/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b32/x86/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b64/aarch64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b64/loongarch64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b64/mips64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b64/powerpc64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b64/s390x.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b64/wasm32/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b64/wasm32/wali.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/b64/x86_64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/lfs64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/musl/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/uclibc/arm/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/uclibc/mips/mips32/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/uclibc/mips/mips64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/uclibc/mips/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/uclibc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/uclibc/x86_64/l4re.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/uclibc/x86_64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/linux/uclibc/x86_64/other.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/linux_like/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/newlib/aarch64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/newlib/arm/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/newlib/espidf/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/newlib/generic.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/newlib/horizon/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/newlib/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/newlib/powerpc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/newlib/rtems/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/newlib/vita/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/nto/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/nto/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/nto/neutrino.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/nto/x86_64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/nuttx/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/redox/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/solarish/compat.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/solarish/illumos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/solarish/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/solarish/solaris.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/solarish/x86.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/solarish/x86_64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/unix/solarish/x86_common.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/vxworks/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/vxworks/arm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/vxworks/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/vxworks/powerpc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/vxworks/powerpc64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/vxworks/riscv32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/vxworks/riscv64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/vxworks/x86.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/vxworks/x86_64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/wasi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/wasi/p2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/windows/gnu/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/windows/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/windows/msvc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/src/xous.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2021"
  cargo_pkg_version = "0.2.178"
  cargo_pkg_authors = "The Rust Project Developers"
  cargo_pkg_name = "libc"
  cargo_pkg_description = "Raw FFI bindings to platform libraries like libc."
  cargo_pkg_repository = "https://github.com/rust-lang/libc"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
    "//build/config/coverage:default_coverage",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [ "//build/rust/std:std_build_deps" ]
  if (!is_win) {
    deps += [ ":rustc_std_workspace_core" ]
  }
  features = [
    "align",
    "rustc-dep-of-std",
    "rustc-std-workspace-core",
  ]
  build_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/build.rs"
  build_sources = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/libc-0.2.178/build.rs" ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "libc_bindings"
    cpp_namespace = "rs_libc"
    deps = []
    deps += []
    if (!is_win) {
      deps += [ ":rustc_std_workspace_core_bindings" ]
    }
  }
}
cargo_crate("memchr") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/lib.rs"
  enabled = !is_win
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/aarch64/memchr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/aarch64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/aarch64/neon/memchr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/aarch64/neon/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/aarch64/neon/packedpair.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/all/memchr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/all/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/all/packedpair/default_rank.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/all/packedpair/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/all/rabinkarp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/all/shiftor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/all/twoway.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/generic/memchr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/generic/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/generic/packedpair.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/wasm32/memchr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/wasm32/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/wasm32/simd128/memchr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/wasm32/simd128/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/wasm32/simd128/packedpair.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/x86_64/avx2/memchr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/x86_64/avx2/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/x86_64/avx2/packedpair.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/x86_64/memchr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/x86_64/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/x86_64/sse2/memchr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/x86_64/sse2/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/arch/x86_64/sse2/packedpair.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/cow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/ext.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/memchr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/memmem/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/memmem/searcher.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/tests/memchr/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/tests/memchr/naive.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/tests/memchr/prop.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/tests/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/tests/packedpair.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/tests/substring/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/tests/substring/naive.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/tests/substring/prop.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/memchr-2.7.6/src/vector.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2021"
  cargo_pkg_version = "2.7.6"
  cargo_pkg_authors = "Andrew Gallant <jamslam@gmail.com>, bluss"
  cargo_pkg_name = "memchr"
  cargo_pkg_description = "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1, 2 or 3 byte search and single substring search."
  cargo_pkg_repository = "https://github.com/BurntSushi/memchr"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  if (!is_win) {
    deps += [ ":rustc_std_workspace_core" ]
  }
  aliased_deps = {
    core = ":rustc_std_workspace_core"
  }
  features = [
    "core",
    "rustc-dep-of-std",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "memchr_bindings"
    cpp_namespace = "rs_memchr"
    deps = []
    deps += []
    if (!is_win) {
      deps += [ ":rustc_std_workspace_core_bindings" ]
    }
  }
}
cargo_crate("miniz_oxide") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/lib.rs"
  enabled = !is_win
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/deflate/buffer.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/deflate/core.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/deflate/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/deflate/stored.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/deflate/stream.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/deflate/zlib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/inflate/core.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/inflate/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/inflate/output_buffer.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/inflate/stream.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/serde/big_array.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/serde/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/miniz_oxide-0.8.9/src/shared.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2021"
  cargo_pkg_version = "0.8.9"
  cargo_pkg_authors = "Frommi <daniil.liferenko@gmail.com>, oyvindln <oyvindln@users.noreply.github.com>, Rich Geldreich richgel99@gmail.com"
  cargo_pkg_name = "miniz_oxide"
  cargo_pkg_description = "DEFLATE compression and decompression library rewritten in Rust based on miniz"
  cargo_pkg_repository =
      "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  if (!is_win) {
    deps += [
      ":adler2",
      ":rustc_std_workspace_alloc",
      ":rustc_std_workspace_core",
    ]
  }
  aliased_deps = {
    alloc = ":rustc_std_workspace_alloc"
    core = ":rustc_std_workspace_core"
  }
  features = [
    "alloc",
    "core",
    "rustc-dep-of-std",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "miniz_oxide_bindings"
    cpp_namespace = "rs_miniz_oxide"
    deps = []
    deps += []
    if (!is_win) {
      deps += [
        ":adler2_bindings",
        ":rustc_std_workspace_alloc_bindings",
        ":rustc_std_workspace_core_bindings",
      ]
    }
  }
}
cargo_crate("object") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/lib.rs"
  enabled = !is_win
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/archive.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/build/bytes.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/build/elf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/build/error.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/build/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/build/table.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/common.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/elf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/endian.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/macho.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/pe.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/pod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/any.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/archive.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/coff/comdat.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/coff/file.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/coff/import.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/coff/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/coff/relocation.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/coff/section.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/coff/symbol.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/attributes.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/comdat.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/compression.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/dynamic.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/file.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/hash.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/note.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/relocation.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/section.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/segment.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/symbol.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/elf/version.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/gnu_compression.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/macho/dyld_cache.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/macho/fat.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/macho/file.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/macho/load_command.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/macho/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/macho/relocation.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/macho/section.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/macho/segment.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/macho/symbol.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/pe/data_directory.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/pe/export.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/pe/file.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/pe/import.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/pe/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/pe/relocation.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/pe/resource.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/pe/rich.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/pe/section.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/read_cache.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/read_ref.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/traits.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/util.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/wasm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/xcoff/comdat.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/xcoff/file.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/xcoff/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/xcoff/relocation.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/xcoff/section.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/xcoff/segment.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/read/xcoff/symbol.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/write/coff/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/write/coff/object.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/write/coff/writer.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/write/elf/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/write/elf/object.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/write/elf/writer.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/write/macho.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/write/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/write/pe.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/write/string.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/write/util.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/write/xcoff.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/src/xcoff.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2018"
  cargo_pkg_version = "0.37.3"
  cargo_pkg_name = "object"
  cargo_pkg_description =
      "A unified interface for reading and writing object file formats."
  cargo_pkg_repository = "https://github.com/gimli-rs/object"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  if (!is_win) {
    deps += [
      ":memchr",
      ":rustc_std_workspace_alloc",
      ":rustc_std_workspace_core",
    ]
  }
  aliased_deps = {
    alloc = ":rustc_std_workspace_alloc"
    core = ":rustc_std_workspace_core"
  }
  features = [
    "alloc",
    "archive",
    "coff",
    "core",
    "elf",
    "macho",
    "pe",
    "read_core",
    "rustc-dep-of-std",
    "unaligned",
    "xcoff",
  ]
  build_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/build.rs"
  build_sources = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/object-0.37.3/build.rs" ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "object_bindings"
    cpp_namespace = "rs_object"
    deps = []
    deps += []
    if (!is_win) {
      deps += [
        ":memchr_bindings",
        ":rustc_std_workspace_alloc_bindings",
        ":rustc_std_workspace_core_bindings",
      ]
    }
  }
}
cargo_crate("panic_abort") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/panic_abort/src/lib.rs"
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/panic_abort/src/android.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/panic_abort/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/panic_abort/src/zkvm.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "0.0.0"
  cargo_pkg_name = "panic_abort"
  cargo_pkg_description = "Implementation of Rust panics via process aborts"
  cargo_pkg_repository = "https://github.com/rust-lang/rust.git"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":rustc_std_workspace_core",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  if (is_android) {
    deps += [
      ":alloc",
      ":libc",
    ]
  }
  aliased_deps = {
    core = ":rustc_std_workspace_core"
  }
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "panic_abort_bindings"
    cpp_namespace = "rs_panic_abort"
    deps = []
    deps += [ ":rustc_std_workspace_core_bindings" ]
    if (is_android) {
      deps += [
        ":alloc_bindings",
        ":libc_bindings",
      ]
    }
  }
}
cargo_crate("proc_macro") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/lib.rs"
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/bridge/arena.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/bridge/buffer.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/bridge/client.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/bridge/closure.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/bridge/fxhash.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/bridge/handle.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/bridge/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/bridge/rpc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/bridge/selfless_reify.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/bridge/server.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/bridge/symbol.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/diagnostic.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/escape.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/quote.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/proc_macro/src/to_tokens.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "0.0.0"
  cargo_pkg_name = "proc_macro"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":core",
    ":rustc_literal_escaper",
    ":std",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  features = [
    "default",
    "rustc-dep-of-std",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "proc_macro_bindings"
    cpp_namespace = "rs_proc_macro"
    deps = []
    deps += [
      ":core_bindings",
      ":rustc_literal_escaper_bindings",
      ":std_bindings",
    ]
  }
}
cargo_crate("profiler_builtins") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/profiler_builtins/src/lib.rs"
  sources = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/profiler_builtins/src/lib.rs" ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "0.0.0"
  cargo_pkg_name = "profiler_builtins"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
    "//build/config/coverage:default_coverage",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [ "//build/rust/std:std_build_deps" ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "profiler_builtins_bindings"
    cpp_namespace = "rs_profiler_builtins"
    deps = []
  }
}
cargo_crate("rustc_demangle") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/rustc-demangle-0.1.27/src/lib.rs"
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/rustc-demangle-0.1.27/src/legacy.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/rustc-demangle-0.1.27/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/rustc-demangle-0.1.27/src/v0.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2015"
  cargo_pkg_version = "0.1.27"
  cargo_pkg_authors = "Alex Crichton <alex@alexcrichton.com>"
  cargo_pkg_name = "rustc-demangle"
  cargo_pkg_description = "Rust compiler symbol demangling."
  cargo_pkg_repository = "https://github.com/rust-lang/rustc-demangle"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":rustc_std_workspace_core",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  aliased_deps = {
    core = ":rustc_std_workspace_core"
  }
  features = [
    "core",
    "rustc-dep-of-std",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "rustc_demangle_bindings"
    cpp_namespace = "rs_rustc_demangle"
    deps = []
    deps += [ ":rustc_std_workspace_core_bindings" ]
  }
}
cargo_crate("rustc_literal_escaper") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/rustc-literal-escaper-0.0.7/src/lib.rs"
  sources = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/vendor/rustc-literal-escaper-0.0.7/src/lib.rs" ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2021"
  cargo_pkg_version = "0.0.7"
  cargo_pkg_name = "rustc-literal-escaper"
  cargo_pkg_description = "Provides code to unescape string literals"
  cargo_pkg_repository = "https://github.com/rust-lang/literal-escaper"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":rustc_std_workspace_core",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  aliased_deps = {
    core = ":rustc_std_workspace_core"
  }
  features = [ "rustc-dep-of-std" ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "rustc_literal_escaper_bindings"
    cpp_namespace = "rs_rustc_literal_escaper"
    deps = []
    deps += [ ":rustc_std_workspace_core_bindings" ]
  }
}
cargo_crate("rustc_std_workspace_alloc") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/rustc-std-workspace-alloc/lib.rs"
  sources = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/rustc-std-workspace-alloc/lib.rs" ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "1.99.0"
  cargo_pkg_name = "rustc-std-workspace-alloc"
  cargo_pkg_description = "Hack for the compiler's own build system"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
    "//build/config/coverage:default_coverage",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":alloc",
    "//build/rust/std:std_build_deps",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "rustc_std_workspace_alloc_bindings"
    cpp_namespace = "rs_rustc_std_workspace_alloc"
    deps = []
    deps += [ ":alloc_bindings" ]
  }
}
cargo_crate("rustc_std_workspace_core") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/rustc-std-workspace-core/lib.rs"
  sources = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/rustc-std-workspace-core/lib.rs" ]
  inputs = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/rustc-std-workspace-core/README.md" ]
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "1.99.0"
  cargo_pkg_name = "rustc-std-workspace-core"
  cargo_pkg_description = "Hack for the compiler's own build system"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
    "//build/config/coverage:default_coverage",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":compiler_builtins",
    ":core",
    "//build/rust/std:std_build_deps",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "rustc_std_workspace_core_bindings"
    cpp_namespace = "rs_rustc_std_workspace_core"
    deps = []
    deps += [
      ":compiler_builtins_bindings",
      ":core_bindings",
    ]
  }
}
cargo_crate("rustc_std_workspace_std") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/rustc-std-workspace-std/lib.rs"
  sources = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/rustc-std-workspace-std/lib.rs" ]
  inputs = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/rustc-std-workspace-std/README.md" ]
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "1.99.0"
  cargo_pkg_name = "rustc-std-workspace-std"
  cargo_pkg_description = "Hack for the compiler's own build system"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":std",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "rustc_std_workspace_std_bindings"
    cpp_namespace = "rs_rustc_std_workspace_std"
    deps = []
    deps += [ ":std_bindings" ]
  }
}
cargo_crate("std") {
  crate_type = "rlib"
  crate_root =
      "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/lib.rs"
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/alloc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/ascii.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/backtrace.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/backtrace/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/bstr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/collections/hash/map.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/collections/hash/map/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/collections/hash/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/collections/hash/set.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/collections/hash/set/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/collections/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/env.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/error.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/ffi/c_str.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/ffi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/ffi/os_str.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/ffi/os_str/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/fs/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/hash/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/hash/random.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/buffered/bufreader.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/buffered/bufreader/buffer.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/buffered/bufwriter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/buffered/linewriter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/buffered/linewritershim.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/buffered/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/buffered/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/copy.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/copy/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/cursor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/cursor/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/error.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/error/repr_bitpacked.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/error/repr_unpacked.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/error/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/impls.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/impls/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/pipe.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/pipe/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/prelude.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/stdio.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/stdio/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/util.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/io/util/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/keyword_docs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/lib.miri.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/net/hostname.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/net/ip_addr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/net/ip_addr/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/net/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/net/socket_addr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/net/socket_addr/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/net/tcp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/net/tcp/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/net/test.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/net/udp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/net/udp/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/num/f128.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/num/f16.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/num/f32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/num/f64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/num/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/aix/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/aix/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/aix/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/android/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/android/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/android/net.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/android/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/cygwin/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/cygwin/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/cygwin/net.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/cygwin/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/darwin/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/darwin/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/darwin/objc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/darwin/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/dragonfly/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/dragonfly/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/dragonfly/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/emscripten/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/emscripten/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/emscripten/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/espidf/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/espidf/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/espidf/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fd/net.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fd/owned.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fd/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fd/stdio.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fd/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/arch.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/ffi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/io.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fortanix_sgx/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/freebsd/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/freebsd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/freebsd/net.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/freebsd/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fuchsia/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fuchsia/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/fuchsia/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/haiku/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/haiku/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/haiku/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/hermit/ffi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/hermit/io/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/hermit/io/net.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/hermit/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/horizon/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/horizon/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/horizon/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/hurd/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/hurd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/hurd/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/illumos/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/illumos/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/illumos/net.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/illumos/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/ios/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/l4re/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/l4re/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/l4re/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/linux/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/linux/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/linux/net.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/linux/process.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/linux/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/macos/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/motor/ffi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/motor/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/motor/process.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/net/linux_ext/addr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/net/linux_ext/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/net/linux_ext/socket.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/net/linux_ext/tcp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/net/linux_ext/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/net/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/netbsd/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/netbsd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/netbsd/net.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/netbsd/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/nto/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/nto/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/nto/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/nuttx/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/nuttx/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/nuttx/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/openbsd/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/openbsd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/openbsd/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/raw/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/raw/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/redox/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/redox/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/redox/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/rtems/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/rtems/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/rtems/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/solaris/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/solaris/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/solaris/net.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/solaris/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/solid/ffi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/solid/io.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/solid/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/trusty/io/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/trusty/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/uefi/env.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/uefi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/ffi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/ffi/os_str.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/fs/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/io/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/io/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/net/addr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/net/ancillary.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/net/datagram.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/net/listener.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/net/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/net/stream.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/net/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/net/ucred.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/net/ucred/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/process.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/unix/thread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/vita/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/vita/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/vita/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/vxworks/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/vxworks/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/vxworks/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/wasi/ffi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/wasi/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/wasi/io/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/wasi/io/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/wasi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/wasi/net/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/wasip2/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/ffi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/io/handle.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/io/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/io/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/io/socket.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/io/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/net/addr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/net/listener.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/net/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/net/stream.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/process.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/windows/thread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/xous/ffi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/xous/ffi/definitions.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/xous/ffi/definitions/memoryflags.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/xous/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/xous/services.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/xous/services/dns.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/xous/services/log.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/xous/services/net.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/xous/services/systime.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/os/xous/services/ticktimer.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/panic.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/panicking.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/pat.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/path.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/prelude/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/prelude/v1.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/process.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/process/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/random.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/rt.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/barrier.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/lazy_lock.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mpmc/array.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mpmc/context.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mpmc/counter.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mpmc/error.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mpmc/list.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mpmc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mpmc/select.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mpmc/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mpmc/utils.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mpmc/waker.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mpmc/zero.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/mpsc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/nonpoison.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/nonpoison/condvar.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/nonpoison/mutex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/nonpoison/rwlock.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/once.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/once_lock.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/oneshot.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/poison.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/poison/condvar.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/poison/mutex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/poison/rwlock.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sync/reentrant_lock.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/hermit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/solid.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/uefi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/vexos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/wasm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/windows/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/xous.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/alloc/zkvm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/common.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/uefi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/wasip1.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/wasip2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/windows/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/xous.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/args/zkvm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/backtrace.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/cmath.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/configure_builtins.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/common.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/hermit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/solid.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/uefi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/wasi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/xous.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env/zkvm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/env_consts.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/exit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fd/hermit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fd/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fd/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fd/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fd/unix/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/common.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/hermit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/solid.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/uefi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/unix/dir.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/unix/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/vexos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/windows/dir.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/fs/windows/remove_dir_all.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/helpers/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/helpers/small_c_string.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/helpers/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/helpers/wstr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/error/generic.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/error/hermit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/error/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/error/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/error/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/error/solid.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/error/teeos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/error/uefi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/error/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/error/wasi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/error/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/error/xous.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/io_slice/iovec.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/io_slice/uefi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/io_slice/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/io_slice/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/is_terminal/hermit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/is_terminal/isatty.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/is_terminal/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/is_terminal/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/is_terminal/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/kernel_copy/linux.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/kernel_copy/linux/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/kernel_copy/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/io/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/socket/hermit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/socket/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/socket/solid.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/socket/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/socket/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/socket/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/uefi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/uefi/tcp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/uefi/tcp4.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/wasip1.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/xous/dns.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/xous/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/xous/tcplistener.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/xous/tcpstream.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/connection/xous/udp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/hostname/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/hostname/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/hostname/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/hostname/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/net/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/os_str/bytes.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/os_str/bytes/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/os_str/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/os_str/utf8.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/os_str/wtf8.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/hermit/futex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/hermit/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/hermit/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/hermit/time.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/itron/abi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/itron/error.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/itron/spin.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/itron/task.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/itron/thread_parking.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/itron/time.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/itron/time/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/motor/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/motor/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/mem.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/panic.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/reloc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/thread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/tls/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/tls/sync_bitset.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/tls/sync_bitset/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/usercalls/alloc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/usercalls/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/usercalls/raw.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/abi/usercalls/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/libunwind_integration.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/thread_parking.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/waitqueue/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/waitqueue/spin_mutex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/waitqueue/spin_mutex/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/waitqueue/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/waitqueue/unsafe_list.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/sgx/waitqueue/unsafe_list/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/solid/abi/fs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/solid/abi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/solid/abi/sockets.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/solid/error.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/solid/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/solid/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/teeos/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/teeos/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/trusty/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/uefi/helpers.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/uefi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/uefi/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/uefi/system_time.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/uefi/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fuchsia.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/futex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/linux/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/linux/pidfd.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/linux/pidfd/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/os/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/stack_overflow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/stack_overflow/thread_info.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/sync/condvar.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/sync/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/sync/mutex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/thread_parking.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/time.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/weak/dlsym.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/weak/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/weak/syscall.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/weak/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unix/weak/weak_linkage.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unsupported/common.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unsupported/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/unsupported/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/vexos/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/wasi/cabi_realloc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/wasi/helpers.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/wasi/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/wasi/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/wasi/stack_overflow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/wasm/atomics/futex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/wasm/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/api.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/api/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/c.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/c/windows_sys.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/compat.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/futex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/handle.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/os/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/stack_overflow.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/stack_overflow_uwp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/time.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/winsock.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/xous/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/xous/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/xous/os/params.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/xous/os/params/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/zkvm/abi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/zkvm/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/zkvm/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/path/cygwin.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/path/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/path/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/path/uefi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/path/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/path/unsupported_backslash.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/path/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/path/windows/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/path/windows_prefix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/personality/dwarf/eh.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/personality/dwarf/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/personality/dwarf/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/personality/emcc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/personality/gcc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/personality/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pipe/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pipe/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pipe/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pipe/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pipe/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/platform_version/darwin/core_foundation.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/platform_version/darwin/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/platform_version/darwin/public_extern.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/platform_version/darwin/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/platform_version/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/env.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/uefi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/unix/common.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/unix/common/cstring_array.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/unix/common/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/unix/fuchsia.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/unix/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/unix/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/unix/unix/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/unix/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/unix/unsupported/wait_status.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/unix/unsupported/wait_status/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/unix/vxworks.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/windows/child_pipe.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/process/windows/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/apple.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/arc4random.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/espidf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/fuchsia.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/getentropy.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/getrandom.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/hermit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/linux.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/redox.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/solid.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/teeos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/trusty.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/uefi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/unix_legacy.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/vxworks.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/wasip1.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/wasip2.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/random/zkvm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/solid.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/teeos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/trusty.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/uefi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/vexos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/windows/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/xous.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/stdio/zkvm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/condvar/futex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/condvar/itron.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/condvar/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/condvar/no_threads.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/condvar/pthread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/condvar/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/condvar/windows7.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/condvar/xous.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/mutex/fuchsia.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/mutex/futex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/mutex/itron.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/mutex/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/mutex/no_threads.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/mutex/pthread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/mutex/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/mutex/windows7.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/mutex/xous.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/once/futex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/once/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/once/no_threads.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/once/queue.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/once_box.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/rwlock/futex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/rwlock/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/rwlock/no_threads.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/rwlock/queue.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/rwlock/solid.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/darwin.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/futex.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/id.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/pthread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/windows7.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/sync/thread_parking/xous.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/hermit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/motor.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/solid.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/teeos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/uefi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/vexos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/wasm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread/xous.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/destructors/linux_like.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/destructors/list.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/guard/apple.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/guard/key.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/guard/solid.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/guard/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/key/racy.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/key/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/key/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/key/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/key/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/key/xous.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/native/eager.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/native/lazy.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/native/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/no_threads.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/thread_local/os.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/time/hermit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/time/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/time/sgx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/time/solid.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/time/uefi.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/time/unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/time/unsupported.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/time/vexos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/time/windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/time/xous.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/test_helpers.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/builder.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/current.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/functions.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/id.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/join_handle.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/lifecycle.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/local.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/main_thread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/scoped.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/spawnhook.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/thread/thread.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/time.rs",
  ]
  inputs = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/backtrace/libunwind.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/backtrace/miri.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/backtrace/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/backtrace/noop.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/backtrace/win32.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/backtrace/win64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/capture.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/dbghelp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/print/fuchsia.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/print.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/dbghelp.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/coff.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/elf.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/libs_aix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/libs_dl_iterate_phdr.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/libs_haiku.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/libs_illumos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/libs_libnx.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/libs_macos.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/libs_windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/lru.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/macho.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/mmap_fake.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/mmap_unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/mmap_windows.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/parse_running_mmaps_unix.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/stash.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli/xcoff.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/gimli.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/miri.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/symbolize/noop.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/types.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/windows_sys.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../backtrace/src/windows_sys_arm32_shim.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/error.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_char.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_double.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_float.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_int.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_long.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_longlong.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_schar.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_short.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_uchar.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_uint.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_ulong.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_ulonglong.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_ushort.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ffi/c_void.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/fmt/fmt_trait_method_doc.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/macros/panic.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/primitive_docs.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ptr/docs/INFO.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ptr/docs/add.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ptr/docs/addr.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ptr/docs/as_ref.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ptr/docs/as_uninit_ref.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ptr/docs/as_uninit_slice.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ptr/docs/is_null.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../core/src/ptr/docs/offset.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../portable-simd/crates/core_simd/src/core_simd_docs.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../portable-simd/crates/std_float/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/../../stdarch/crates/core_arch/src/core_arch_docs.md",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/src/sys/pal/windows/c/README.md",
  ]
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "0.0.0"
  cargo_pkg_name = "std"
  cargo_pkg_description = "The Rust Standard Library"
  cargo_pkg_repository = "https://github.com/rust-lang/rust.git"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [
    "//build/config/compiler:no_chromium_code",
    "//build/rust:panic_immediate_abort",
  ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":alloc",
    ":cfg_if",
    ":core",
    ":hashbrown",
    ":panic_abort",
    ":rustc_demangle",
    ":std_detect",
    ":unwind",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  if (!is_win) {
    deps += [
      ":addr2line",
      ":libc",
      ":miniz_oxide",
      ":object",
    ]
  }
  if (is_win) {
    deps += [ ":windows_link" ]
  }
  features = [
    "addr2line",
    "backtrace",
    "miniz_oxide",
    "object",
  ]
  build_root =
      "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/build.rs"
  build_sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std/build.rs",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "std_bindings"
    cpp_namespace = "rs_std"
    deps = []
    deps += [
      ":alloc_bindings",
      ":cfg_if_bindings",
      ":core_bindings",
      ":hashbrown_bindings",
      ":panic_abort_bindings",
      ":rustc_demangle_bindings",
      ":std_detect_bindings",
      ":unwind_bindings",
    ]
    if (!is_win) {
      deps += [
        ":addr2line_bindings",
        ":libc_bindings",
        ":miniz_oxide_bindings",
        ":object_bindings",
      ]
    }
    if (is_win) {
      deps += [ ":windows_link_bindings" ]
    }
  }
}
cargo_crate("std_detect") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/lib.rs"
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/arch/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/arch/arm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/arch/loongarch.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/arch/mips.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/arch/mips64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/arch/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/arch/powerpc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/arch/powerpc64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/arch/riscv.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/arch/s390x.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/arch/x86.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/bit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/cache.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/macros.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/darwin/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/freebsd/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/freebsd/arm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/freebsd/auxvec.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/freebsd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/freebsd/powerpc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/aarch64/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/arm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/auxvec.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/auxvec/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/loongarch.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/mips.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/powerpc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/riscv.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/linux/s390x.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/openbsd/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/openbsd/auxvec.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/openbsd/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/openbsd/powerpc.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/other.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/riscv.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/riscv/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/windows/aarch64.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/detect/os/x86.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/std_detect/src/lib.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "0.1.5"
  cargo_pkg_authors = "Alex Crichton <alex@alexcrichton.com>, Andrew Gallant <jamslam@gmail.com>, Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>"
  cargo_pkg_name = "std_detect"
  cargo_pkg_description =
      "`std::detect` - Rust's standard library run-time CPU feature detection."
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":rustc_std_workspace_alloc",
    ":rustc_std_workspace_core",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  if (!is_win) {
    deps += [ ":libc" ]
  }
  aliased_deps = {
    alloc = ":rustc_std_workspace_alloc"
    core = ":rustc_std_workspace_core"
  }
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "std_detect_bindings"
    cpp_namespace = "rs_std_detect"
    deps = []
    deps += [
      ":rustc_std_workspace_alloc_bindings",
      ":rustc_std_workspace_core_bindings",
    ]
    if (!is_win) {
      deps += [ ":libc_bindings" ]
    }
  }
}
cargo_crate("sysroot") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/sysroot/src/lib.rs"
  sources = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/sysroot/src/lib.rs" ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "0.0.0"
  cargo_pkg_name = "sysroot"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":proc_macro",
    ":profiler_builtins",
    ":std",
    ":test",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  features = [
    "backtrace",
    "profiler",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "sysroot_bindings"
    cpp_namespace = "rs_sysroot"
    deps = []
    deps += [
      ":proc_macro_bindings",
      ":profiler_builtins_bindings",
      ":std_bindings",
      ":test_bindings",
    ]
  }
}
cargo_crate("test") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/lib.rs"
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/bench.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/cli.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/console.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/event.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/formatters/json.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/formatters/junit.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/formatters/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/formatters/pretty.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/formatters/terse.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/helpers/concurrency.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/helpers/metrics.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/helpers/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/helpers/shuffle.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/options.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/stats.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/stats/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/term.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/term/terminfo/mod.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/term/terminfo/parm.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/term/terminfo/parm/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/term/terminfo/parser/compiled.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/term/terminfo/parser/compiled/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/term/terminfo/searcher.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/term/terminfo/searcher/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/term/win.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/test_result.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/tests.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/time.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/src/types.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "0.0.0"
  cargo_pkg_name = "test"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":core",
    ":getopts",
    ":std",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  if (!is_win) {
    deps += [ ":libc" ]
  }
  build_root =
      "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/build.rs"
  build_sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/test/build.rs",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "test_bindings"
    cpp_namespace = "rs_test"
    deps = []
    deps += [
      ":core_bindings",
      ":getopts_bindings",
      ":std_bindings",
    ]
    if (!is_win) {
      deps += [ ":libc_bindings" ]
    }
  }
}
cargo_crate("unwind") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/unwind/src/lib.rs"
  sources = [
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/unwind/src/lib.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/unwind/src/libunwind.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/unwind/src/unwinding.rs",
    "//third_party/rust-toolchain/lib/rustlib/src/rust/library/unwind/src/wasm.rs",
  ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "0.0.0"
  cargo_pkg_name = "unwind"
  cargo_pkg_repository = "https://github.com/rust-lang/rust.git"
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    ":rustc_std_workspace_core",
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  if (!is_win) {
    deps += [ ":libc" ]
  }
  aliased_deps = {
    core = ":rustc_std_workspace_core"
  }
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
    "-Zlink-directives=false",
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "unwind_bindings"
    cpp_namespace = "rs_unwind"
    deps = []
    deps += [ ":rustc_std_workspace_core_bindings" ]
    if (!is_win) {
      deps += [ ":libc_bindings" ]
    }
  }
}
cargo_crate("windows_link") {
  crate_type = "rlib"
  crate_root = "//third_party/rust-toolchain/lib/rustlib/src/rust/library/windows_link/src/lib.rs"
  enabled = is_win
  sources = [ "//third_party/rust-toolchain/lib/rustlib/src/rust/library/windows_link/src/lib.rs" ]
  inputs = []
  no_std = true

  # Unit tests skipped. Generate with --with-tests to include them.
  build_native_rust_unit_tests = false
  edition = "2024"
  cargo_pkg_version = "0.0.0"
  cargo_pkg_name = "windows-link"
  cargo_pkg_description = "A drop-in replacement for the real windows-link crate for use in std only."
  library_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  library_configs += [ "//build/config/compiler:no_chromium_code" ]
  executable_configs -= [
    "//build/config/compiler:chromium_code",
    "//build/config/compiler:disallow_unstable_features",
  ]
  executable_configs += [ "//build/config/compiler:no_chromium_code" ]
  deps = [
    "//build/rust/std:profiler_builtins_group",
    "//build/rust/std:std_build_deps",
  ]
  rustenv = [
    "CFG_DISABLE_UNSTABLE_FEATURES=0",
    "STD_ENV_ARCH=$rust_target_arch",
  ]
  rustflags = [
    "--cfg=backtrace_in_libstd",
    "-Zforce-unstable-if-unmarked",
    "--cap-lints=allow",  # Suppress all warnings in stdlib crates
  ]
  output_dir =
      "$root_out_dir/local_rustc_sysroot/lib/rustlib/$rust_abi_target/lib/"
  cpp_api_from_rust = {
    target_name = "windows_link_bindings"
    cpp_namespace = "rs_windows_link"
    deps = []
  }
}