rustyphoenixcommitrelease 1.3.0

Commits, tags and pushes a Phoenix release
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
version: 7
platforms:
- name: linux-64
  virtual-packages:
  - __unix=0=0
  - __linux=4.18
  - __glibc=2.28
  - __archspec=0=x86_64
- name: linux-aarch64
  virtual-packages:
  - __unix=0=0
  - __linux=4.18
  - __glibc=2.28
  - __archspec=0=aarch64
environments:
  coverage:
    channels:
    - url: https://prefix.dev/conda-forge/
    - url: https://prefix.dev/phoenix/
    - url: https://prefix.dev/phoenix-dev/
    packages:
      linux-64:
      - conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils-2.46.1-default_h4852527_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.46.1-default_hfdba357_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_10.conda
      - conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.8-h280c20c_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-16.1.0-h5a3cd76_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc-16.1.0-hc6a0c74_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-16.1.0-h5fcb69b_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/git-2.55.0-pl5321h5685339_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/git-cliff-2.13.1-h66dc0b5_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/icu-78.3-py310h44b86e0_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbde042b_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.46.1-default_hbd61a6d_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.21.0-heca4667_4.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h373387f_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libev-4.33-h280c20c_3.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.8.1-hecca717_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-16.1.0-ha9f2e26_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-16.1.0-h69a702a_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgit2-1.9.6-hc20babb_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-16.1.0-he0feb66_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libllvm22-22.1.8-hf7376ad_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.3-hb03c661_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.68.1-h877daf1_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libpsl-0.23.1-hf670292_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-16.1.0-hf2715c6_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-16.1.0-h934c35e_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.38-h280c20c_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libxml2-16-2.15.3-hca6bf5a_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.15.3-h49c6c72_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_3.conda
      - conda: https://prefix.dev/conda-forge/linux-64/lld-22.1.8-hef48ded_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.6-hdb14827_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/pcre2-10.47-haa7fec5_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/perl-5.32.1-7_hd590300_perl5.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.97.1-h53717f1_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_7.conda
      - conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-hbd8a1cb_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-16.1.0-h59071f9_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-16.1.0-h41cdd0d_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.97.1-unix_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.97.1-h2c6d0dc_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda
      linux-aarch64:
      - conda: https://prefix.dev/conda-forge/linux-aarch64/_openmp_mutex-4.5-20_gnu.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils-2.46.1-default_hf1166c9_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.46.1-default_h5f4c503_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/bzip2-1.0.8-h4777abc_10.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/c-ares-1.34.8-h80f16a2_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-16.1.0-h4acae54_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-16.1.0-hfdd745d_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-16.1.0-h04da0f0_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/git-2.55.0-pl5321h06f7e71_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/git-cliff-2.13.1-h911cc49_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/icu-78.3-py311h3512406_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/keyutils-1.6.3-h86ecc28_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/krb5-1.22.2-h2fb54aa_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.46.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libcurl-8.21.0-h23397ac_4.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321hc48eb74_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libev-4.33-h80f16a2_3.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libexpat-2.8.1-hfae3067_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-16.1.0-h205dda4_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-ng-16.1.0-he9431aa_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgit2-1.9.6-hf175a32_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-16.1.0-h8acb6b2_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libiconv-1.18-h90929bb_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm22-22.1.8-hfd2ba90_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.3-he30d5cf_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libnghttp2-1.68.1-hd3077d7_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libpsl-0.23.1-h36cc0f4_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-16.1.0-h2510bd8_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libssh2-1.11.1-h18c354c_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-16.1.0-hef695bb_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxcrypt-4.4.38-h80f16a2_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-16-2.15.3-h79dcc73_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.15.3-h869d058_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.2-hdc9db2a_3.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/lld-22.1.8-hddaf64f_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ncurses-6.6-h2b6f883_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.6.3-h546c87b_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/pcre2-10.47-hf841c20_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/perl-5.32.1-7_h31becfc_perl5.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.97.1-h6cf38e9_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-h9d15635_7.conda
      - conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-hbd8a1cb_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-16.1.0-hd673532_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-16.1.0-h2445e1f_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.97.1-unix_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.97.1-hbe8e118_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda
  default:
    channels:
    - url: https://prefix.dev/conda-forge/
    - url: https://prefix.dev/phoenix/
    - url: https://prefix.dev/phoenix-dev/
    packages:
      linux-64:
      - conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils-2.46.1-default_h4852527_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.46.1-default_hfdba357_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_10.conda
      - conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.8-h280c20c_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-16.1.0-h5a3cd76_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc-16.1.0-hc6a0c74_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-16.1.0-h5fcb69b_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/git-2.55.0-pl5321h5685339_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/git-cliff-2.13.1-h66dc0b5_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/icu-78.3-py310h44b86e0_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbde042b_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.46.1-default_hbd61a6d_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.21.0-heca4667_4.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h373387f_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libev-4.33-h280c20c_3.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.8.1-hecca717_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-16.1.0-ha9f2e26_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-16.1.0-h69a702a_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgit2-1.9.6-hc20babb_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-16.1.0-he0feb66_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libllvm22-22.1.8-hf7376ad_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.3-hb03c661_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.68.1-h877daf1_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libpsl-0.23.1-hf670292_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-16.1.0-hf2715c6_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-16.1.0-h934c35e_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.38-h280c20c_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libxml2-16-2.15.3-hca6bf5a_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.15.3-h49c6c72_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_3.conda
      - conda: https://prefix.dev/conda-forge/linux-64/lld-22.1.8-hef48ded_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.6-hdb14827_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/pcre2-10.47-haa7fec5_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/perl-5.32.1-7_hd590300_perl5.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.97.1-h53717f1_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_7.conda
      - conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-hbd8a1cb_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-16.1.0-h59071f9_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-16.1.0-h41cdd0d_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.97.1-unix_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.97.1-h2c6d0dc_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda
      linux-aarch64:
      - conda: https://prefix.dev/conda-forge/linux-aarch64/_openmp_mutex-4.5-20_gnu.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils-2.46.1-default_hf1166c9_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.46.1-default_h5f4c503_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/bzip2-1.0.8-h4777abc_10.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/c-ares-1.34.8-h80f16a2_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-16.1.0-h4acae54_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-16.1.0-hfdd745d_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-16.1.0-h04da0f0_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/git-2.55.0-pl5321h06f7e71_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/git-cliff-2.13.1-h911cc49_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/icu-78.3-py311h3512406_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/keyutils-1.6.3-h86ecc28_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/krb5-1.22.2-h2fb54aa_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.46.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libcurl-8.21.0-h23397ac_4.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321hc48eb74_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libev-4.33-h80f16a2_3.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libexpat-2.8.1-hfae3067_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-16.1.0-h205dda4_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-ng-16.1.0-he9431aa_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgit2-1.9.6-hf175a32_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-16.1.0-h8acb6b2_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libiconv-1.18-h90929bb_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm22-22.1.8-hfd2ba90_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.3-he30d5cf_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libnghttp2-1.68.1-hd3077d7_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libpsl-0.23.1-h36cc0f4_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-16.1.0-h2510bd8_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libssh2-1.11.1-h18c354c_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-16.1.0-hef695bb_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxcrypt-4.4.38-h80f16a2_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-16-2.15.3-h79dcc73_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.15.3-h869d058_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.2-hdc9db2a_3.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/lld-22.1.8-hddaf64f_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ncurses-6.6-h2b6f883_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.6.3-h546c87b_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/pcre2-10.47-hf841c20_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/perl-5.32.1-7_h31becfc_perl5.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.97.1-h6cf38e9_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-h9d15635_7.conda
      - conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-hbd8a1cb_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-16.1.0-hd673532_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-16.1.0-h2445e1f_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.97.1-unix_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.97.1-hbe8e118_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda
  doc:
    channels:
    - url: https://prefix.dev/conda-forge/
    - url: https://prefix.dev/phoenix/
    - url: https://prefix.dev/phoenix-dev/
    packages:
      linux-64:
      - conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils-2.46.1-default_h4852527_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.46.1-default_hfdba357_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-16.1.0-h5a3cd76_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc-16.1.0-hc6a0c74_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-16.1.0-h5fcb69b_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.46.1-default_hbd61a6d_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-16.1.0-ha9f2e26_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-16.1.0-he0feb66_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-16.1.0-hf2715c6_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-16.1.0-h934c35e_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_3.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.97.1-h53717f1_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_7.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-16.1.0-h59071f9_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-16.1.0-h41cdd0d_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.97.1-unix_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.97.1-h2c6d0dc_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda
      linux-aarch64:
      - conda: https://prefix.dev/conda-forge/linux-aarch64/_openmp_mutex-4.5-20_gnu.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils-2.46.1-default_hf1166c9_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.46.1-default_h5f4c503_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-16.1.0-h4acae54_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-16.1.0-hfdd745d_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-16.1.0-h04da0f0_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.46.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-16.1.0-h205dda4_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-16.1.0-h8acb6b2_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-16.1.0-h2510bd8_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-16.1.0-hef695bb_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.2-hdc9db2a_3.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.97.1-h6cf38e9_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-h9d15635_7.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-16.1.0-hd673532_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-16.1.0-h2445e1f_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.97.1-unix_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.97.1-hbe8e118_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda
  prod:
    channels:
    - url: https://prefix.dev/conda-forge/
    - url: https://prefix.dev/phoenix/
    - url: https://prefix.dev/phoenix-dev/
    packages: {}
  publish:
    channels:
    - url: https://prefix.dev/conda-forge/
    - url: https://prefix.dev/phoenix/
    - url: https://prefix.dev/phoenix-dev/
    packages:
      linux-64:
      - conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.46.1-default_hfdba357_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-16.1.0-h5fcb69b_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.46.1-default_hbd61a6d_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-16.1.0-ha9f2e26_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-16.1.0-he0feb66_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-16.1.0-hf2715c6_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-16.1.0-h934c35e_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_3.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.97.1-h53717f1_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_7.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-16.1.0-h59071f9_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-16.1.0-h41cdd0d_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.97.1-unix_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.97.1-h2c6d0dc_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda
      linux-aarch64:
      - conda: https://prefix.dev/conda-forge/linux-aarch64/_openmp_mutex-4.5-20_gnu.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.46.1-default_h5f4c503_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-16.1.0-h04da0f0_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.46.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-16.1.0-h205dda4_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-16.1.0-h8acb6b2_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-16.1.0-h2510bd8_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-16.1.0-hef695bb_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.2-hdc9db2a_3.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.97.1-h6cf38e9_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-h9d15635_7.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-16.1.0-hd673532_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-16.1.0-h2445e1f_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.97.1-unix_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.97.1-hbe8e118_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda
  test:
    channels:
    - url: https://prefix.dev/conda-forge/
    - url: https://prefix.dev/phoenix/
    - url: https://prefix.dev/phoenix-dev/
    packages:
      linux-64:
      - conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils-2.46.1-default_h4852527_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.46.1-default_hfdba357_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_10.conda
      - conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.8-h280c20c_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-16.1.0-h5a3cd76_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc-16.1.0-hc6a0c74_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-16.1.0-h5fcb69b_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/git-2.55.0-pl5321h5685339_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/git-cliff-2.13.1-h66dc0b5_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/icu-78.3-py310h44b86e0_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbde042b_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.46.1-default_hbd61a6d_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.21.0-heca4667_4.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h373387f_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libev-4.33-h280c20c_3.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.8.1-hecca717_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-16.1.0-ha9f2e26_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-16.1.0-h69a702a_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgit2-1.9.6-hc20babb_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-16.1.0-he0feb66_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.68.1-h877daf1_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libpsl-0.23.1-hf670292_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-16.1.0-hf2715c6_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-16.1.0-h934c35e_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.38-h280c20c_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_3.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.6-hdb14827_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/pcre2-10.47-haa7fec5_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/perl-5.32.1-7_hd590300_perl5.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.97.1-h53717f1_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_7.conda
      - conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-hbd8a1cb_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-16.1.0-h59071f9_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-16.1.0-h41cdd0d_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.97.1-unix_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.97.1-h2c6d0dc_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda
      linux-aarch64:
      - conda: https://prefix.dev/conda-forge/linux-aarch64/_openmp_mutex-4.5-20_gnu.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils-2.46.1-default_hf1166c9_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.46.1-default_h5f4c503_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/bzip2-1.0.8-h4777abc_10.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/c-ares-1.34.8-h80f16a2_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-16.1.0-h4acae54_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-16.1.0-hfdd745d_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-16.1.0-h04da0f0_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/git-2.55.0-pl5321h06f7e71_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/git-cliff-2.13.1-h911cc49_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/icu-78.3-py311h3512406_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/keyutils-1.6.3-h86ecc28_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/krb5-1.22.2-h2fb54aa_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.46.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libcurl-8.21.0-h23397ac_4.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321hc48eb74_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libev-4.33-h80f16a2_3.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libexpat-2.8.1-hfae3067_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-16.1.0-h205dda4_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-ng-16.1.0-he9431aa_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgit2-1.9.6-hf175a32_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-16.1.0-h8acb6b2_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libiconv-1.18-h90929bb_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libnghttp2-1.68.1-hd3077d7_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libpsl-0.23.1-h36cc0f4_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-16.1.0-h2510bd8_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libssh2-1.11.1-h18c354c_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-16.1.0-hef695bb_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxcrypt-4.4.38-h80f16a2_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.2-hdc9db2a_3.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ncurses-6.6-h2b6f883_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.6.3-h546c87b_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/pcre2-10.47-hf841c20_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/perl-5.32.1-7_h31becfc_perl5.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.97.1-h6cf38e9_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-h9d15635_7.conda
      - conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-hbd8a1cb_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-16.1.0-hd673532_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-16.1.0-h2445e1f_101.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.97.1-unix_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.97.1-hbe8e118_1.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda
packages:
- conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
  build_number: 20
  sha256: 1dd3fffd892081df9726d7eb7e0dea6198962ba775bd88842135a4ddb4deb3c9
  md5: a9f577daf3de00bca7c3c76c0ecbd1de
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgomp >=7.5.0
  constrains:
  - openmp_impl <0.0a0
  license: BSD-3-Clause
  license_family: BSD
  run_exports:
    strong:
    - _openmp_mutex >=4.5
  size: 28948
  timestamp: 1770939786096
- conda: https://prefix.dev/conda-forge/linux-64/binutils-2.46.1-default_h4852527_102.conda
  sha256: 659c367ef49df7741749a2ad240b007d7df51b4f210505a78543deafb001e44c
  md5: e8452fe381cac5fff20563a07722dfa5
  depends:
  - binutils_impl_linux-64 >=2.46.1,<2.46.2.0a0
  license: GPL-3.0-only
  license_family: GPL
  run_exports: {}
  size: 35399
  timestamp: 1784214547142
- conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.46.1-default_hfdba357_102.conda
  sha256: fb7bf36984a37ce7e4714d1d1da0bd0e3bfc679520f5cdc184afc676fd4b5da2
  md5: a0c5e0b7f58c8ceeb08e5bc41251d5a2
  depends:
  - ld_impl_linux-64 2.46.1 default_hbd61a6d_102
  - sysroot_linux-64
  - zstd >=1.5.7,<1.6.0a0
  license: GPL-3.0-only
  license_family: GPL
  run_exports: {}
  size: 3713752
  timestamp: 1784214522814
- conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_10.conda
  sha256: 1a0d382c515ebf55f8ee1f38c8b81bc95af5c2acc42ad53b66bc5df932032f96
  md5: e675fabcf81499adc7edf58124fb1e01
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  license: bzip2-1.0.6
  license_family: BSD
  run_exports:
    weak:
    - bzip2 >=1.0.8,<2.0a0
  size: 257808
  timestamp: 1785906269155
- conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.8-h280c20c_1.conda
  sha256: 5139b6afbfaca91c47104ba9a6a40f81211e1c9200e96b73ce3a56f0ca1902f4
  md5: 2cef891b791040aab83e218c7d137679
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  constrains:
  - c-ares-static <0a0
  license: MIT
  license_family: MIT
  run_exports:
    weak:
    - c-ares >=1.34.8,<2.0a0
  size: 226755
  timestamp: 1786116641939
- conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-16.1.0-h5a3cd76_1.conda
  sha256: 36ba2ed6eeb46dc3d84a2b93c2ea63793996161df67b88837b2685d674fd7a66
  md5: e287ed8dc5743364a2c86dcb60335404
  depends:
  - gcc_impl_linux-64 >=16.1.0,<16.1.1.0a0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 32335
  timestamp: 1785375632558
- conda: https://prefix.dev/conda-forge/linux-64/gcc-16.1.0-hc6a0c74_1.conda
  sha256: 251f14570e47ed3773aa576cd2bdb33d605696d9b322c641ec10ff50718b0bc6
  md5: cc291f1c68286e453bdb472f4c102c33
  depends:
  - conda-gcc-specs
  - gcc_impl_linux-64 16.1.0 h5fcb69b_1
  license: BSD-3-Clause
  license_family: BSD
  run_exports: {}
  size: 29212
  timestamp: 1785375743539
- conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-16.1.0-h5fcb69b_1.conda
  sha256: 00c87015522248adb5565a1b8f977cfe927831dd7ef0cb0a5d13f896844af719
  md5: 419982d8913246db404319048e062d3e
  depends:
  - binutils_impl_linux-64 >=2.46.1
  - libgcc >=16.1.0
  - libgcc-devel_linux-64 16.1.0 h59071f9_101
  - libgomp >=16.1.0
  - libsanitizer 16.1.0 hf2715c6_1
  - libstdcxx >=16.1.0
  - libstdcxx-devel_linux-64 16.1.0 h41cdd0d_101
  - sysroot_linux-64
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 85161422
  timestamp: 1785375529345
- conda: https://prefix.dev/conda-forge/linux-64/git-2.55.0-pl5321h5685339_1.conda
  sha256: ffe825e3ff78876dc5aa28eee791d8d9be4a47157761aa38dbff79e9222b3b8e
  md5: da325124b01b7b88e7374d160d02698b
  depends:
  - __glibc >=2.17,<3.0.a0
  - libcurl >=8.21.0,<9.0a0
  - libexpat >=2.8.1,<3.0a0
  - libgcc >=14
  - libiconv >=1.18,<2.0a0
  - libzlib >=1.3.2,<2.0a0
  - openssl >=3.5.7,<4.0a0
  - pcre2 >=10.47,<10.48.0a0
  - perl 5.*
  constrains:
  - __glibc >=2.17
  license: GPL-2.0-or-later and LGPL-2.1-or-later
  run_exports: {}
  size: 11598127
  timestamp: 1783981072661
- conda: https://prefix.dev/conda-forge/linux-64/git-cliff-2.13.1-h66dc0b5_0.conda
  sha256: fffd3e80b736d77403351d0c421651a6f5d05d90fd7fa81da7dc770e907cdb4a
  md5: 7a3fd7f340184ae5e64fe0621b0649ab
  depends:
  - libgcc >=14
  - __glibc >=2.17,<3.0.a0
  - libgit2 >=1.9.2,<1.10.0a0
  - libzlib >=1.3.2,<2.0a0
  - libssh2 >=1.11.1,<2.0a0
  constrains:
  - __glibc >=2.17
  license: MIT OR Apache-2.0
  run_exports: {}
  size: 5840935
  timestamp: 1777214856418
- conda: https://prefix.dev/conda-forge/linux-64/icu-78.3-py310h44b86e0_2.conda
  sha256: 9f07834f0c546ab14d885ce0366285f61f44e326c0edd1fc63b8294e113ae432
  md5: 72a381cbad04f24b1c2a43ef707f45b4
  depends:
  - __glibc >=2.17,<3.0.a0
  - libstdcxx >=14
  - libgcc >=14
  license: MIT
  run_exports:
    weak:
    - icu >=78.3,<79.0a0
  size: 14459115
  timestamp: 1786545741408
- conda: https://prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
  sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4
  md5: b38117a3c920364aff79f870c984b4a3
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=13
  license: LGPL-2.1-or-later
  run_exports:
    weak:
    - keyutils >=1.6.3,<2.0a0
  size: 134088
  timestamp: 1754905959823
- conda: https://prefix.dev/conda-forge/linux-64/krb5-1.22.2-hbde042b_1.conda
  sha256: 9b07046870772f28740e3f6149f09ff222843733087a33c5540b169c6289652d
  md5: 54157a1c8c0bb70f62dd0b17fba7e7f2
  depends:
  - __glibc >=2.17,<3.0.a0
  - keyutils >=1.6.3,<2.0a0
  - libedit >=3.1.20250104,<3.2.0a0
  - libedit >=3.1.20250104,<4.0a0
  - libgcc >=14
  - libstdcxx >=14
  - openssl >=3.5.7,<4.0a0
  license: MIT
  license_family: MIT
  run_exports:
    weak:
    - krb5 >=1.22.2,<1.23.0a0
  size: 1388990
  timestamp: 1781859420533
- conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.46.1-default_hbd61a6d_102.conda
  sha256: 27d83f1188cd19bcb7754a078b3fa7f4cfb8527f8eb2fde54dd01fc529d1adec
  md5: 449500f2c089da11c40f5c21312e3e07
  depends:
  - __glibc >=2.17,<3.0.a0
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - binutils_impl_linux-64 2.46.1
  license: GPL-3.0-only
  license_family: GPL
  run_exports: {}
  size: 745303
  timestamp: 1784214507189
- conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.21.0-heca4667_4.conda
  sha256: aff8ef75636d0825ce34911e0bef2f26816e7afd090a9dcb4b9bacab75cbf584
  md5: 3f2fd5617cfacac49c85f6dc63842ea1
  depends:
  - __glibc >=2.17,<3.0.a0
  - krb5 >=1.22.2,<1.23.0a0
  - libgcc >=14
  - libnghttp2 >=1.68.1,<2.0a0
  - libpsl >=0.23.0,<0.24.0a0
  - libssh2 >=1.11.1,<2.0a0
  - libzlib >=1.3.2,<2.0a0
  - openssl >=3.5.7,<4.0a0
  - zstd >=1.5.7,<1.6.0a0
  license: curl
  license_family: MIT
  run_exports:
    weak:
    - libcurl >=8.21.0,<9.0a0
  size: 480565
  timestamp: 1785500108494
- conda: https://prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h373387f_1.conda
  sha256: 6473eb8caf2aae830f37caa93db9b26dddf7ac84b63229e8bf7fc0e5c3ab95b0
  md5: 50708d3b951d0f8e2d7f2df5b5edc040
  depends:
  - ncurses
  - libgcc >=14
  - __glibc >=2.17,<3.0.a0
  - ncurses >=6.6,<7.0a0
  license: BSD-2-Clause
  run_exports:
    weak:
    - libedit >=3.1.20250104,<3.2.0a0
  size: 135098
  timestamp: 1786616658086
- conda: https://prefix.dev/conda-forge/linux-64/libev-4.33-h280c20c_3.conda
  sha256: e4418f68d01a6307c4431b585c71b584f40189877364e542ee87deb777f5e85b
  md5: 7bc31538d6e3fb349e897353969237ec
  depends:
  - libgcc >=14
  - __glibc >=2.17,<3.0.a0
  license: BSD-2-Clause OR GPL-2.0-or-later
  license_family: GPL
  run_exports:
    weak:
    - libev >=4.33,<4.34.0a0
  size: 43220
  timestamp: 1785917328200
- conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.8.1-hecca717_1.conda
  sha256: 16feffd9ddbbe5b718515d38ee376c685ba95491cd901244e24671d20b952a77
  md5: b24d3c612f71e7aa74158d92106318b2
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  constrains:
  - expat 2.8.1.*
  license: MIT
  license_family: MIT
  run_exports: {}
  size: 77856
  timestamp: 1781203599810
- conda: https://prefix.dev/conda-forge/linux-64/libgcc-16.1.0-ha9f2e26_1.conda
  sha256: d5cb8475131c31680f8fd30512c418f373064e272e452063276a8fb14c9fa42f
  md5: 5a7d954665c707c93311657cd779c705
  depends:
  - __glibc >=2.17,<3.0.a0
  - _openmp_mutex >=4.5
  constrains:
  - libgomp 16.1.0 he0feb66_1
  - libgcc-ng ==16.1.0=*_1
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 1057877
  timestamp: 1785375436766
- conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-16.1.0-h69a702a_1.conda
  sha256: 225275c562337a1cd61705da0ee4235dde7bba7504de1c34b74c894adb2b0eee
  md5: 7ed870c014a6f23c7dfafda53d2763a9
  depends:
  - libgcc 16.1.0 ha9f2e26_1
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports:
    strong:
    - libgcc
  size: 28210
  timestamp: 1785375440733
- conda: https://prefix.dev/conda-forge/linux-64/libgit2-1.9.6-hc20babb_0.conda
  sha256: 193027f5dde1698ad63cc6ac636e93f6a307a6b460ad641c43b5b38216ec1605
  md5: f3c88febd64c2c03cdda0e4fd1527f0e
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  - libstdcxx >=14
  - openssl >=3.5.7,<4.0a0
  - libzlib >=1.3.2,<2.0a0
  - libssh2 >=1.11.1,<2.0a0
  - pcre2 >=10.47,<10.48.0a0
  license: GPL-2.0-only WITH GCC-exception-2.0
  license_family: GPL
  run_exports:
    weak:
    - libgit2 >=1.9.6,<1.10.0a0
  size: 1046396
  timestamp: 1784388654589
- conda: https://prefix.dev/conda-forge/linux-64/libgomp-16.1.0-he0feb66_1.conda
  sha256: 62cb599ad0539d99386515326d9d5e8f51f75a60c69c2131b21df76edf35bd89
  md5: 88f2d91cb1533194c323534253094d23
  depends:
  - __glibc >=2.17,<3.0.a0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports:
    strong:
    - _openmp_mutex >=4.5
  size: 640415
  timestamp: 1785375373755
- conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda
  sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f
  md5: 915f5995e94f60e9a4826e0b0920ee88
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  license: LGPL-2.1-only
  run_exports:
    weak:
    - libiconv >=1.18,<2.0a0
  size: 790176
  timestamp: 1754908768807
- conda: https://prefix.dev/conda-forge/linux-64/libllvm22-22.1.8-hf7376ad_1.conda
  sha256: e9b5f301d6b001a9b8ce782157f56b75c92c4fbc9eba95dc6345c1139251d13b
  md5: 298bb2483fc7d15396147cf1c1465359
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  - libstdcxx >=14
  - libxml2
  - libxml2-16 >=2.14.6
  - libzlib >=1.3.2,<2.0a0
  - zstd >=1.5.7,<1.6.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  run_exports:
    weak:
    - libllvm22 >=22.1.8,<22.2.0a0
  size: 44320272
  timestamp: 1781788728739
- conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.3-hb03c661_1.conda
  sha256: 9787df8c22a59c9a70d3e5a10db9ad663485e75e9ccc3f09bd092cb7b95e0dab
  md5: 1390b7c5ac0b1d8e447bc5efa6d3c8c2
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  constrains:
  - xz 5.8.3.*
  license: 0BSD
  run_exports:
    weak:
    - liblzma >=5.8.3,<6.0a0
  size: 112995
  timestamp: 1786348617826
- conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.68.1-h877daf1_0.conda
  sha256: 663444d77a42f2265f54fb8b48c5450bfff4388d9c0f8253dd7855f0d993153f
  md5: 2a45e7f8af083626f009645a6481f12d
  depends:
  - __glibc >=2.17,<3.0.a0
  - c-ares >=1.34.6,<2.0a0
  - libev >=4.33,<4.34.0a0
  - libev >=4.33,<5.0a0
  - libgcc >=14
  - libstdcxx >=14
  - libzlib >=1.3.1,<2.0a0
  - openssl >=3.5.5,<4.0a0
  license: MIT
  license_family: MIT
  run_exports:
    weak:
    - libnghttp2 >=1.68.1,<2.0a0
  size: 663344
  timestamp: 1773854035739
- conda: https://prefix.dev/conda-forge/linux-64/libpsl-0.23.1-hf670292_0.conda
  sha256: 2e6405feb59e3f40a5a4641dfa73afda158046893aa73d478e23415e18997ece
  md5: c8217f5bdd5b018087bdea081912cda5
  depends:
  - libgcc >=14
  - libstdcxx >=14
  - __glibc >=2.17,<3.0.a0
  - icu >=78.3,<79.0a0
  license: MIT
  license_family: MIT
  run_exports:
    weak:
    - libpsl >=0.23.1,<0.24.0a0
  size: 72505
  timestamp: 1786443494718
- conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-16.1.0-hf2715c6_1.conda
  sha256: 85662ecadd3961bc96cbcc38dbc024a768cc35932c8440677ed028ea6322c36c
  md5: abd77210925872ee084672cf5be1d491
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=16.1.0
  - libstdcxx >=16.1.0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports:
    weak:
    - libsanitizer 16.1.0
  size: 7780843
  timestamp: 1785375481116
- conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda
  sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661
  md5: eecce068c7e4eddeb169591baac20ac4
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=13
  - libzlib >=1.3.1,<2.0a0
  - openssl >=3.5.0,<4.0a0
  license: BSD-3-Clause
  license_family: BSD
  run_exports:
    weak:
    - libssh2 >=1.11.1,<2.0a0
  size: 304790
  timestamp: 1745608545575
- conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-16.1.0-h934c35e_1.conda
  sha256: 79721dd08aeb0ab9e773f1f9ef41cf4e6c17477e3d72319147619045bce05a09
  md5: aed6cf89adc1e9b846e4367ac538e434
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc 16.1.0 ha9f2e26_1
  constrains:
  - libstdcxx-ng ==16.1.0=*_1
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 6631744
  timestamp: 1785375462643
- conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.38-h280c20c_0.conda
  sha256: f7e9292dd219a6435bbb1223da9586c3e70d66d169c5a92f08db3f2127df04e9
  md5: f7a7ff5a6ab331e037abd34f379a631d
  depends:
  - libgcc >=14
  - __glibc >=2.17,<3.0.a0
  license: LGPL-2.1-or-later
  run_exports:
    weak:
    - libxcrypt >=4.4.38
  size: 101957
  timestamp: 1785887123445
- conda: https://prefix.dev/conda-forge/linux-64/libxml2-16-2.15.3-hca6bf5a_0.conda
  sha256: 3d44f737c5ae52d5af32682cc1530df433f401f8e58a7533926536244127572a
  md5: e79d2c2f24b027aa8d5ab1b1ba3061e7
  depends:
  - __glibc >=2.17,<3.0.a0
  - icu >=78.3,<79.0a0
  - libgcc >=14
  - libiconv >=1.18,<2.0a0
  - liblzma >=5.8.3,<6.0a0
  - libzlib >=1.3.2,<2.0a0
  constrains:
  - libxml2 2.15.3
  license: MIT
  license_family: MIT
  run_exports: {}
  size: 559775
  timestamp: 1776376739004
- conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.15.3-h49c6c72_0.conda
  sha256: 3bc5551720c58591f6ea1146f7d1539c734ed1c40e7b9f5cb8cb7e900c509aba
  md5: 995d8c8bad2a3cc8db14675a153dec2b
  depends:
  - __glibc >=2.17,<3.0.a0
  - icu >=78.3,<79.0a0
  - libgcc >=14
  - libiconv >=1.18,<2.0a0
  - liblzma >=5.8.3,<6.0a0
  - libxml2-16 2.15.3 hca6bf5a_0
  - libzlib >=1.3.2,<2.0a0
  license: MIT
  license_family: MIT
  run_exports:
    weak:
    - libxml2
    - libxml2-16 >=2.15.3
  size: 46810
  timestamp: 1776376751152
- conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_3.conda
  sha256: eb8a0db0aa570124f7d2a93d7c7f596e3390df5e047818d873baad32985fc736
  md5: 0de0122d9570a8ab637c6b73db268389
  depends:
  - __glibc >=2.17,<3.0.a0
  constrains:
  - zlib 1.3.2 *_3
  license: Zlib
  license_family: Other
  run_exports:
    weak:
    - libzlib >=1.3.2,<2.0a0
  size: 63713
  timestamp: 1785362952714
- conda: https://prefix.dev/conda-forge/linux-64/lld-22.1.8-hef48ded_0.conda
  sha256: 7c33f47d70570867275e9c11187c0aa354b0432269e030a60630a90593b358f0
  md5: 2687f5b9e14b45e6bdaa921e0b6d7f0d
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  - libllvm22 >=22.1.8,<22.2.0a0
  - libstdcxx >=14
  - libzlib >=1.3.2,<2.0a0
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - llvm ==22.1.8
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  run_exports: {}
  size: 12416030
  timestamp: 1781770627213
- conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.6-hdb14827_1.conda
  sha256: 5d46557214ed184381dafe835b7c94a474a1c3b307a08a250b1ea4779b44ffb3
  md5: ee6c0cd80a60961a1f48aa3e0b91f986
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  license: X11 AND BSD-3-Clause
  run_exports:
    weak:
    - ncurses >=6.6,<7.0a0
  size: 911196
  timestamp: 1786355078102
- conda: https://prefix.dev/conda-forge/linux-64/openssl-3.6.3-h35e630c_1.conda
  sha256: 012096056b97abf1f68c46b7146bd2cbd68c1be762340b4f5dad4fbbe99177bc
  md5: c5955c27917ff2234def47f075e71e02
  depends:
  - __glibc >=2.17,<3.0.a0
  - ca-certificates
  - libgcc >=14
  license: Apache-2.0
  license_family: Apache
  run_exports:
    weak:
    - openssl >=3.6.3,<4.0a0
  size: 3182423
  timestamp: 1785913583650
- conda: https://prefix.dev/conda-forge/linux-64/pcre2-10.47-haa7fec5_0.conda
  sha256: 5e6f7d161356fefd981948bea5139c5aa0436767751a6930cb1ca801ebb113ff
  md5: 7a3bff861a6583f1889021facefc08b1
  depends:
  - __glibc >=2.17,<3.0.a0
  - bzip2 >=1.0.8,<2.0a0
  - libgcc >=14
  - libzlib >=1.3.1,<2.0a0
  license: BSD-3-Clause
  license_family: BSD
  run_exports:
    weak:
    - pcre2 >=10.47,<10.48.0a0
  size: 1222481
  timestamp: 1763655398280
- conda: https://prefix.dev/conda-forge/linux-64/perl-5.32.1-7_hd590300_perl5.conda
  build_number: 7
  sha256: 9ec32b6936b0e37bcb0ed34f22ec3116e75b3c0964f9f50ecea5f58734ed6ce9
  md5: f2cfec9406850991f4e3d960cc9e3321
  depends:
  - libgcc-ng >=12
  - libxcrypt >=4.4.36
  license: GPL-1.0-or-later OR Artistic-1.0-Perl
  run_exports:
    weak:
    - perl >=5.32.1,<5.33.0a0 *_perl5
    noarch:
    - perl >=5.32.1,<6.0a0 *_perl5
  size: 13344463
  timestamp: 1703310653947
- conda: https://prefix.dev/conda-forge/linux-64/rust-1.97.1-h53717f1_1.conda
  sha256: cb56b3177657b4446b60c3d20d7976198c84abafb0f44a877166eec14c91e2f0
  md5: cffa2c51d39eed4307335ce32c9c5a4f
  depends:
  - __glibc >=2.17,<3.0.a0
  - gcc_impl_linux-64
  - libgcc >=14
  - libzlib >=1.3.2,<2.0a0
  - rust-std-x86_64-unknown-linux-gnu 1.97.1 h2c6d0dc_1
  - sysroot_linux-64 >=2.17
  license: MIT
  license_family: MIT
  run_exports:
    strong_constrains:
    - __glibc >=2.17
  size: 173878988
  timestamp: 1786462553726
- conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_7.conda
  sha256: 47d682b9f6d6ec9eb1a6e6c3e75ea6273e899e78fb7fc59f81d39745009fbc60
  md5: aa459086047c0e5e27023ab19f8cb86a
  depends:
  - __glibc >=2.17,<3.0.a0
  - libzlib >=1.3.2,<2.0a0
  license: BSD-3-Clause
  run_exports:
    weak:
    - zstd >=1.5.7,<1.6.0a0
  size: 601301
  timestamp: 1786599621503
- conda: https://prefix.dev/conda-forge/linux-aarch64/_openmp_mutex-4.5-20_gnu.conda
  build_number: 20
  sha256: a2527b1d81792a0ccd2c05850960df119c2b6d8f5fdec97f2db7d25dc23b1068
  md5: 468fd3bb9e1f671d36c2cbc677e56f1d
  depends:
  - libgomp >=7.5.0
  constrains:
  - openmp_impl <0.0a0
  license: BSD-3-Clause
  license_family: BSD
  run_exports:
    strong:
    - _openmp_mutex >=4.5
  size: 28926
  timestamp: 1770939656741
- conda: https://prefix.dev/conda-forge/linux-aarch64/binutils-2.46.1-default_hf1166c9_102.conda
  sha256: 548d128bc257badd2d9dbdff8173eb693fcbec84ceeb0fa74cbfed141ed42ad9
  md5: 7a2f1cdac4c9fd2e87533ff2d2dcb702
  depends:
  - binutils_impl_linux-aarch64 >=2.46.1,<2.46.2.0a0
  license: GPL-3.0-only
  license_family: GPL
  run_exports: {}
  size: 35377
  timestamp: 1784214574154
- conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.46.1-default_h5f4c503_102.conda
  sha256: eebe159bf600943552e4319ff4ce27b6a2dadf0dcc5443e76dcee9259a408e11
  md5: 58f37d76b8234c69dbf2939d511bea0b
  depends:
  - ld_impl_linux-aarch64 2.46.1 default_h1979696_102
  - sysroot_linux-aarch64
  - zstd >=1.5.7,<1.6.0a0
  license: GPL-3.0-only
  license_family: GPL
  run_exports: {}
  size: 4677171
  timestamp: 1784214549910
- conda: https://prefix.dev/conda-forge/linux-aarch64/bzip2-1.0.8-h4777abc_10.conda
  sha256: 24eacc8a20fd7c4616566178562bef7f9344eb4a8700cfc3180fa75a6ff9d39f
  md5: fd544ef1c672d645bf78e5819cbb8f91
  depends:
  - libgcc >=14
  license: bzip2-1.0.6
  license_family: BSD
  run_exports:
    weak:
    - bzip2 >=1.0.8,<2.0a0
  size: 194694
  timestamp: 1785906301397
- conda: https://prefix.dev/conda-forge/linux-aarch64/c-ares-1.34.8-h80f16a2_1.conda
  sha256: 537be62d1835ba3d211941537a13302f6c827d9b1316ca11384c0f47ca755cc8
  md5: 9aaa63e98eb2cf6d22d1d2f87ec9adba
  depends:
  - libgcc >=14
  constrains:
  - c-ares-static <0a0
  license: MIT
  license_family: MIT
  run_exports:
    weak:
    - c-ares >=1.34.8,<2.0a0
  size: 236990
  timestamp: 1786116643290
- conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-16.1.0-h4acae54_1.conda
  sha256: 7d831ff2e037b1e14fef8409dfb538351b435fe0efa7c4b63775acbd792c649d
  md5: dcb1e01acfd26a97885331bd3fbc47be
  depends:
  - gcc_impl_linux-aarch64 >=16.1.0,<16.1.1.0a0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 32305
  timestamp: 1785374718936
- conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-16.1.0-hfdd745d_1.conda
  sha256: 5fdf87306009cd510f0bc1ad64151698e9ef900bd405cf46310fe298ebc6c14a
  md5: 5574f897eefe0b5cf93cc2a25f91505d
  depends:
  - conda-gcc-specs
  - gcc_impl_linux-aarch64 16.1.0 h04da0f0_1
  license: BSD-3-Clause
  license_family: BSD
  run_exports: {}
  size: 29239
  timestamp: 1785374814595
- conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-16.1.0-h04da0f0_1.conda
  sha256: ad024e118ed57e7277547fd03a913b981e9bb9a6db258b8943293b13329d4489
  md5: e5551bb5b75bcc4031e40f2b69baab84
  depends:
  - binutils_impl_linux-aarch64 >=2.46.1
  - libgcc >=16.1.0
  - libgcc-devel_linux-aarch64 16.1.0 hd673532_101
  - libgomp >=16.1.0
  - libsanitizer 16.1.0 h2510bd8_1
  - libstdcxx >=16.1.0
  - libstdcxx-devel_linux-aarch64 16.1.0 h2445e1f_101
  - sysroot_linux-aarch64
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 75102801
  timestamp: 1785374604361
- conda: https://prefix.dev/conda-forge/linux-aarch64/git-2.55.0-pl5321h06f7e71_1.conda
  sha256: 02615f600a0d4242dcedcb7ebd8f1faa02f7136551cc3e804fc879a015237644
  md5: cdbc79af349a0df66596b1f91534e476
  depends:
  - libcurl >=8.21.0,<9.0a0
  - libexpat >=2.8.1,<3.0a0
  - libgcc >=14
  - libiconv >=1.18,<2.0a0
  - libzlib >=1.3.2,<2.0a0
  - openssl >=3.5.7,<4.0a0
  - pcre2 >=10.47,<10.48.0a0
  - perl 5.*
  constrains:
  - __glibc >=2.17
  license: GPL-2.0-or-later and LGPL-2.1-or-later
  run_exports: {}
  size: 13581417
  timestamp: 1783984665476
- conda: https://prefix.dev/conda-forge/linux-aarch64/git-cliff-2.13.1-h911cc49_0.conda
  sha256: 5251aa0bbce7dbdb40de279b5c9c371c61d3eb0523bffa152a00938fd746b8a5
  md5: 7dccea6ebca93a10ce665cc9f5c52926
  depends:
  - libgcc >=14
  - libzlib >=1.3.2,<2.0a0
  - libgit2 >=1.9.2,<1.10.0a0
  - libssh2 >=1.11.1,<2.0a0
  constrains:
  - __glibc >=2.17
  license: MIT OR Apache-2.0
  run_exports: {}
  size: 5186021
  timestamp: 1777214864054
- conda: https://prefix.dev/conda-forge/linux-aarch64/icu-78.3-py311h3512406_2.conda
  sha256: 54d921defd947adb58a90e10203d3bfe6c1f209f5f1a1ad2c6a9f7617f2fb59e
  md5: b35bbb1b957440ed742f35fb96eb7f1c
  depends:
  - libgcc >=14
  - libstdcxx >=14
  license: MIT
  run_exports:
    weak:
    - icu >=78.3,<79.0a0
  size: 14688525
  timestamp: 1786545779464
- conda: https://prefix.dev/conda-forge/linux-aarch64/keyutils-1.6.3-h86ecc28_0.conda
  sha256: 5ce830ca274b67de11a7075430a72020c1fb7d486161a82839be15c2b84e9988
  md5: e7df0aab10b9cbb73ab2a467ebfaf8c7
  depends:
  - libgcc >=13
  license: LGPL-2.1-or-later
  run_exports:
    weak:
    - keyutils >=1.6.3,<2.0a0
  size: 129048
  timestamp: 1754906002667
- conda: https://prefix.dev/conda-forge/linux-aarch64/krb5-1.22.2-h2fb54aa_1.conda
  sha256: b644718416a22b5d57c1194ea7207b7f8d33d6a2b42775763782d76cd7457aea
  md5: 5fd2304064ef6199d1f91ec60ee7b820
  depends:
  - keyutils >=1.6.3,<2.0a0
  - libedit >=3.1.20250104,<3.2.0a0
  - libedit >=3.1.20250104,<4.0a0
  - libgcc >=14
  - libstdcxx >=14
  - openssl >=3.5.7,<4.0a0
  license: MIT
  license_family: MIT
  run_exports:
    weak:
    - krb5 >=1.22.2,<1.23.0a0
  size: 1518484
  timestamp: 1781859412954
- conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.46.1-default_h1979696_102.conda
  sha256: 2c4901f4227b0850328ed0c69f958b30ad2cd18982f7a31c7c1f911827004d08
  md5: 489444d0acb2a579d2a002d85a08c059
  depends:
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - binutils_impl_linux-aarch64 2.46.1
  license: GPL-3.0-only
  license_family: GPL
  run_exports: {}
  size: 905305
  timestamp: 1784214534868
- conda: https://prefix.dev/conda-forge/linux-aarch64/libcurl-8.21.0-h23397ac_4.conda
  sha256: 5a99beaf91963d212f9b488b5361a2d7aeb69ae3d44b40b65a3e87f128c5417e
  md5: 5afef6f29ea234741802980cdcee6f5e
  depends:
  - krb5 >=1.22.2,<1.23.0a0
  - libgcc >=14
  - libnghttp2 >=1.68.1,<2.0a0
  - libpsl >=0.23.0,<0.24.0a0
  - libssh2 >=1.11.1,<2.0a0
  - libzlib >=1.3.2,<2.0a0
  - openssl >=3.5.7,<4.0a0
  - zstd >=1.5.7,<1.6.0a0
  license: curl
  license_family: MIT
  run_exports:
    weak:
    - libcurl >=8.21.0,<9.0a0
  size: 505770
  timestamp: 1785500029413
- conda: https://prefix.dev/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321hc48eb74_1.conda
  sha256: 2d7218da06f1121619335bff25a2669df810dee90d2eb65b17f8b2e6b1c0d372
  md5: 6e06eb2c9fda76721699bcdd759b9c60
  depends:
  - ncurses
  - libgcc >=14
  - ncurses >=6.6,<7.0a0
  license: BSD-2-Clause
  run_exports:
    weak:
    - libedit >=3.1.20250104,<3.2.0a0
  size: 149007
  timestamp: 1786616643904
- conda: https://prefix.dev/conda-forge/linux-aarch64/libev-4.33-h80f16a2_3.conda
  sha256: 4475f79a020e9ff2a5a0308c48cb2970a25d55c3dd724a97ab28bfac3be6cd49
  md5: f679b30a53d410d0b5ae0cb8f5b7397e
  depends:
  - libgcc >=14
  license: BSD-2-Clause OR GPL-2.0-or-later
  license_family: GPL
  run_exports:
    weak:
    - libev >=4.33,<4.34.0a0
  size: 45746
  timestamp: 1785917328690
- conda: https://prefix.dev/conda-forge/linux-aarch64/libexpat-2.8.1-hfae3067_1.conda
  sha256: 20a5726bc8705d91437c9e6ef83b30da64a1719b869656d20a1ee818333ea5ac
  md5: fac3b65a605cd253037fdf3daf2de8d9
  depends:
  - libgcc >=14
  constrains:
  - expat 2.8.1.*
  license: MIT
  license_family: MIT
  run_exports: {}
  size: 77649
  timestamp: 1781203572523
- conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-16.1.0-h205dda4_1.conda
  sha256: 88a3d400c678df034c9d498f32503779977d5ea826063687c663e42c945abed5
  md5: 91eb209af1098d652fc69b8a3fc7cbaa
  depends:
  - _openmp_mutex >=4.5
  constrains:
  - libgomp 16.1.0 h8acb6b2_1
  - libgcc-ng ==16.1.0=*_1
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 628785
  timestamp: 1785374520532
- conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-ng-16.1.0-he9431aa_1.conda
  sha256: e0456b4b49e8f9f9ffc04b1b412101ea2c38476eaceb9a0e4e16792d7cfdd929
  md5: e4489d8717b51cee8a33f2b66d10fa6a
  depends:
  - libgcc 16.1.0 h205dda4_1
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports:
    strong:
    - libgcc
  size: 28123
  timestamp: 1785374523851
- conda: https://prefix.dev/conda-forge/linux-aarch64/libgit2-1.9.6-hf175a32_0.conda
  sha256: 51fc5c814ab26fdedb5b572c4a8a3b189a285acfc208ddff544c3fb9ff47bd6b
  md5: 311782b64ad6c56cf644d081c8a3d38b
  depends:
  - libstdcxx >=14
  - libgcc >=14
  - openssl >=3.5.7,<4.0a0
  - libssh2 >=1.11.1,<2.0a0
  - libzlib >=1.3.2,<2.0a0
  - pcre2 >=10.47,<10.48.0a0
  license: GPL-2.0-only WITH GCC-exception-2.0
  license_family: GPL
  run_exports:
    weak:
    - libgit2 >=1.9.6,<1.10.0a0
  size: 1181054
  timestamp: 1784388665564
- conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-16.1.0-h8acb6b2_1.conda
  sha256: 1c609a4a72597350317b92c4d9dfb85d21740219048e2b1d458925a6ccfa3d7a
  md5: 4c9b02fc9fe27704777e260157003653
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports:
    strong:
    - _openmp_mutex >=4.5
  size: 617180
  timestamp: 1785374444877
- conda: https://prefix.dev/conda-forge/linux-aarch64/libiconv-1.18-h90929bb_2.conda
  sha256: 1473451cd282b48d24515795a595801c9b65b567fe399d7e12d50b2d6cdb04d9
  md5: 5a86bf847b9b926f3a4f203339748d78
  depends:
  - libgcc >=14
  license: LGPL-2.1-only
  run_exports:
    weak:
    - libiconv >=1.18,<2.0a0
  size: 791226
  timestamp: 1754910975665
- conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm22-22.1.8-hfd2ba90_1.conda
  sha256: dc943f1730a27f5fb36682c9852f7196f671c3a9df4a0a7a8f7ba665637c9151
  md5: 6fc7875f99e39c80dca8fcdc60e6559e
  depends:
  - libgcc >=14
  - libstdcxx >=14
  - libxml2
  - libxml2-16 >=2.14.6
  - libzlib >=1.3.2,<2.0a0
  - zstd >=1.5.7,<1.6.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  run_exports:
    weak:
    - libllvm22 >=22.1.8,<22.2.0a0
  size: 43302008
  timestamp: 1781785783993
- conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.3-he30d5cf_1.conda
  sha256: f760669fd1cea27f689f411c0d5488e26ce50e382c9b63e4ad348f959850124a
  md5: e0e6411a60d00186eec7c73f4118ab67
  depends:
  - libgcc >=14
  constrains:
  - xz 5.8.3.*
  license: 0BSD
  run_exports:
    weak:
    - liblzma >=5.8.3,<6.0a0
  size: 125578
  timestamp: 1786348561649
- conda: https://prefix.dev/conda-forge/linux-aarch64/libnghttp2-1.68.1-hd3077d7_0.conda
  sha256: 13782715b9eeebc4ad16d36e84ca569d1495e3516aea3fe546a32caa0a597d82
  md5: be5f0f007a4500a226ef001115535a3d
  depends:
  - c-ares >=1.34.6,<2.0a0
  - libev >=4.33,<4.34.0a0
  - libev >=4.33,<5.0a0
  - libgcc >=14
  - libstdcxx >=14
  - libzlib >=1.3.1,<2.0a0
  - openssl >=3.5.5,<4.0a0
  license: MIT
  license_family: MIT
  run_exports:
    weak:
    - libnghttp2 >=1.68.1,<2.0a0
  size: 726928
  timestamp: 1773854039807
- conda: https://prefix.dev/conda-forge/linux-aarch64/libpsl-0.23.1-h36cc0f4_0.conda
  sha256: edb7661283a27cdb4dfde61c463ae5684e994d9a4631c2435d4b7cd5a0380565
  md5: 8c47b55f12f25d0e8c41c01ce0514f15
  depends:
  - libstdcxx >=14
  - libgcc >=14
  - icu >=78.3,<79.0a0
  license: MIT
  license_family: MIT
  run_exports:
    weak:
    - libpsl >=0.23.1,<0.24.0a0
  size: 74615
  timestamp: 1786443500085
- conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-16.1.0-h2510bd8_1.conda
  sha256: 3dfccbcd3bf34923df7482df41bcdbe599675f2de6f03a554dbc238476693854
  md5: ae3d9771453f2ec660dd79e5728129b3
  depends:
  - libgcc >=16.1.0
  - libstdcxx >=16.1.0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports:
    weak:
    - libsanitizer 16.1.0
  size: 8123895
  timestamp: 1785374560390
- conda: https://prefix.dev/conda-forge/linux-aarch64/libssh2-1.11.1-h18c354c_0.conda
  sha256: 1e289bcce4ee6a5817a19c66e296f3c644dcfa6e562e5c1cba807270798814e7
  md5: eecc495bcfdd9da8058969656f916cc2
  depends:
  - libgcc >=13
  - libzlib >=1.3.1,<2.0a0
  - openssl >=3.5.0,<4.0a0
  license: BSD-3-Clause
  license_family: BSD
  run_exports:
    weak:
    - libssh2 >=1.11.1,<2.0a0
  size: 311396
  timestamp: 1745609845915
- conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-16.1.0-hef695bb_1.conda
  sha256: 81ef9a10a0e01ffc7e03d429ed048410153411b2d8bbf95c334bdf3dcf175ab0
  md5: 0bfd287b881e05351a01c7ebf7bf8f1b
  depends:
  - libgcc 16.1.0 h205dda4_1
  constrains:
  - libstdcxx-ng ==16.1.0=*_1
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 6255794
  timestamp: 1785374543663
- conda: https://prefix.dev/conda-forge/linux-aarch64/libxcrypt-4.4.38-h80f16a2_0.conda
  sha256: d3514900e2121972e435f7803763c1843dad6709e48aa02a2b47c4d481f83be7
  md5: b1a5cb7ff2d8f5911ba1fb6897176098
  depends:
  - libgcc >=14
  license: LGPL-2.1-or-later
  run_exports:
    weak:
    - libxcrypt >=4.4.38
  size: 133882
  timestamp: 1785887114864
- conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-16-2.15.3-h79dcc73_0.conda
  sha256: ad048a9ca1bf2cdfedb2b0c231050da416c44ee1436a3d1a83b51d2e2deaa842
  md5: 68866231cfe8789e780347f2482df96d
  depends:
  - icu >=78.3,<79.0a0
  - libgcc >=14
  - libiconv >=1.18,<2.0a0
  - liblzma >=5.8.3,<6.0a0
  - libzlib >=1.3.2,<2.0a0
  constrains:
  - libxml2 2.15.3
  license: MIT
  license_family: MIT
  run_exports: {}
  size: 601948
  timestamp: 1776376758674
- conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.15.3-h869d058_0.conda
  sha256: e3af6af9df73bd3c7a8e4e6c8cc38df3699e7f588b0705c257a8601e40acfbdf
  md5: 2cffef27cb2eb9ed1e315a1e269d4335
  depends:
  - icu >=78.3,<79.0a0
  - libgcc >=14
  - libiconv >=1.18,<2.0a0
  - liblzma >=5.8.3,<6.0a0
  - libxml2-16 2.15.3 h79dcc73_0
  - libzlib >=1.3.2,<2.0a0
  license: MIT
  license_family: MIT
  run_exports:
    weak:
    - libxml2
    - libxml2-16 >=2.15.3
  size: 48101
  timestamp: 1776376766341
- conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.2-hdc9db2a_3.conda
  sha256: 76efa6cc9d7e6f5ee3bbca0939f64054af2bdfb3c3632531f8e633cf6c2ea41e
  md5: bd534c2fbe56d8c2ea3b2d8f5e12bca8
  constrains:
  - zlib 1.3.2 *_3
  license: Zlib
  license_family: Other
  run_exports:
    weak:
    - libzlib >=1.3.2,<2.0a0
  size: 70108
  timestamp: 1785276540870
- conda: https://prefix.dev/conda-forge/linux-aarch64/lld-22.1.8-hddaf64f_0.conda
  sha256: a399325b1c54bec61d062a6ec85141026a73e5ee009da0863aac14593a7650c6
  md5: a3f7cdfca2d9e1d7f5289b9928832ae5
  depends:
  - libgcc >=14
  - libllvm22 >=22.1.8,<22.2.0a0
  - libstdcxx >=14
  - libzlib >=1.3.2,<2.0a0
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - llvm ==22.1.8
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  run_exports: {}
  size: 11762034
  timestamp: 1781770507272
- conda: https://prefix.dev/conda-forge/linux-aarch64/ncurses-6.6-h2b6f883_1.conda
  sha256: d69a04914139627f0a6bfd19412d6c7f1e37edc896af84a6011e07e8bc1e69fa
  md5: c3b4349171ca987ff33a1de61f7b3f96
  depends:
  - libgcc >=14
  license: X11 AND BSD-3-Clause
  run_exports:
    weak:
    - ncurses >=6.6,<7.0a0
  size: 955422
  timestamp: 1786355019431
- conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.6.3-h546c87b_1.conda
  sha256: c89e748e8a008e8ca6f25e102362f33319db0c98cc29d98ddada92842f636327
  md5: 1600dfde78c5adba306f8571af62a323
  depends:
  - ca-certificates
  - libgcc >=14
  license: Apache-2.0
  license_family: Apache
  run_exports:
    weak:
    - openssl >=3.6.3,<4.0a0
  size: 3719270
  timestamp: 1785913554920
- conda: https://prefix.dev/conda-forge/linux-aarch64/pcre2-10.47-hf841c20_0.conda
  sha256: 04df2cee95feba440387f33f878e9f655521e69f4be33a0cd637f07d3d81f0f9
  md5: 1a30c42e32ca0ea216bd0bfe6f842f0b
  depends:
  - bzip2 >=1.0.8,<2.0a0
  - libgcc >=14
  - libzlib >=1.3.1,<2.0a0
  license: BSD-3-Clause
  license_family: BSD
  run_exports:
    weak:
    - pcre2 >=10.47,<10.48.0a0
  size: 1166552
  timestamp: 1763655534263
- conda: https://prefix.dev/conda-forge/linux-aarch64/perl-5.32.1-7_h31becfc_perl5.conda
  build_number: 7
  sha256: d78296134263b5bf476cad838ded65451e7162db756f9997c5d06b08122572ed
  md5: 17d019cb2a6c72073c344e98e40dfd61
  depends:
  - libgcc-ng >=12
  - libxcrypt >=4.4.36
  license: GPL-1.0-or-later OR Artistic-1.0-Perl
  run_exports:
    weak:
    - perl >=5.32.1,<5.33.0a0 *_perl5
    noarch:
    - perl >=5.32.1,<6.0a0 *_perl5
  size: 13338804
  timestamp: 1703310557094
- conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.97.1-h6cf38e9_1.conda
  sha256: 7a676842c8722154f760c4b2f671d04c51b27c1a9a6f2e486cdf82245376a203
  md5: 67a982ab4453c2c35892185e2d782cef
  depends:
  - gcc_impl_linux-aarch64
  - libgcc >=14
  - libzlib >=1.3.2,<2.0a0
  - rust-std-aarch64-unknown-linux-gnu 1.97.1 hbe8e118_1
  - sysroot_linux-aarch64 >=2.17
  license: MIT
  license_family: MIT
  run_exports:
    strong_constrains:
    - __glibc >=2.17
  size: 133536091
  timestamp: 1786461687289
- conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-h9d15635_7.conda
  sha256: 427fd14bcb3b8659796fecc682716617409350fb5a98e5b7b47558a10d1a2fc7
  md5: d942e34ac3920ba83f8b2d0169570187
  depends:
  - libzlib >=1.3.2,<2.0a0
  license: BSD-3-Clause
  run_exports:
    weak:
    - zstd >=1.5.7,<1.6.0a0
  size: 615477
  timestamp: 1786599613561
- conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2026.7.22-hbd8a1cb_0.conda
  sha256: 0a0544cf95f64394fe4959286f5c71f5444ad58feb0602e53becb27448d24da6
  md5: 0f51e2391ade309db462a55611263e9c
  depends:
  - __unix
  license: ISC
  run_exports: {}
  size: 131780
  timestamp: 1784754889428
- conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda
  sha256: 41557eeadf641de6aeae49486cef30d02a6912d8da98585d687894afd65b356a
  md5: 86d9cba083cd041bfbf242a01a7a1999
  constrains:
  - sysroot_linux-64 ==2.28
  license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
  license_family: GPL
  run_exports: {}
  size: 1278712
  timestamp: 1765578681495
- conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_9.conda
  sha256: 5d224bf4df9bac24e69de41897c53756108c5271a0e5d2d2f66fd4e2fbc1d84b
  md5: bb3b7cad9005f2cbf9d169fb30263f3e
  constrains:
  - sysroot_linux-aarch64 ==2.28
  license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
  license_family: GPL
  run_exports: {}
  size: 1248134
  timestamp: 1765578613607
- conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-16.1.0-h59071f9_101.conda
  sha256: b314251d957b16c71ec241119ac09b9530c5c4ce140026ec98d297f55d6c5e08
  md5: 19b0151ecb1d122f706ebd2f82f9a017
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 3096495
  timestamp: 1785375361053
- conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-16.1.0-hd673532_101.conda
  sha256: 885f0d8a47f7ea50d7b33d07a240f2301935602b9d2a39a35b5018b13e934100
  md5: 00cdfad75c8331e103f830fb17184da1
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 2357226
  timestamp: 1785374433650
- conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-16.1.0-h41cdd0d_101.conda
  sha256: c1521172f2fdf5510d79b621ea835064209fe3131518e0d8b2b43362a75e7b4c
  md5: 8593636203272a748b63d56cbd674753
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 22519609
  timestamp: 1785375386152
- conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-16.1.0-h2445e1f_101.conda
  sha256: 926d2c2dedfca7334804d5c8a0727a3746ef580be8763f51ccc2ece24c7be56c
  md5: d2cd8c4b92b4e6dbcb2616d855107aca
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 19792513
  timestamp: 1785374457502
- conda: https://prefix.dev/conda-forge/noarch/rust-src-1.97.1-unix_1.conda
  sha256: 79d25989bf81d1a28967cb74ec4ff39bef3cf8a546678a446f6a3bcd79097cb8
  md5: fe36ded160cc08324926ef1a453f33f2
  depends:
  - __unix
  constrains:
  - rust >=1.97.1,<1.97.2.0a0
  license: MIT
  license_family: MIT
  run_exports: {}
  size: 7091859
  timestamp: 1786462004091
- conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.97.1-hbe8e118_1.conda
  sha256: 6d8da2903c5662fc01b7f092255d07345bd7dce37e81b0c379f1bec1fd22b117
  md5: df7f60d13a249f414b21ade531c9bbac
  depends:
  - __unix
  constrains:
  - rust >=1.97.1,<1.97.2.0a0
  license: MIT
  license_family: MIT
  run_exports: {}
  size: 37467774
  timestamp: 1786461618183
- conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.97.1-h2c6d0dc_1.conda
  sha256: 934afbf999db3e89941b00a735c1283daf5f69980a2da09fc7abdc482fabffdf
  md5: 1fe5e433fe682b8a8afc91cf9bcd78c8
  depends:
  - __unix
  constrains:
  - rust >=1.97.1,<1.97.2.0a0
  license: MIT
  license_family: MIT
  run_exports: {}
  size: 37011732
  timestamp: 1786462491313
- conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
  sha256: c47299fe37aebb0fcf674b3be588e67e4afb86225be4b0d452c7eb75c086b851
  md5: 13dc3adbc692664cd3beabd216434749
  depends:
  - __glibc >=2.28
  - kernel-headers_linux-64 4.18.0 he073ed8_9
  - tzdata
  license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
  license_family: GPL
  run_exports:
    strong:
    - __glibc >=2.28,<3.0.a0
  size: 24008591
  timestamp: 1765578833462
- conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_9.conda
  sha256: 1bd2db6b2e451247bab103e4a0128cf6c7595dd72cb26d70f7fadd9edd1d1bc3
  md5: fdf07ab944a222ff28c754914fdb0740
  depends:
  - __glibc >=2.28
  - kernel-headers_linux-aarch64 4.18.0 h05a177a_9
  - tzdata
  license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later
  license_family: GPL
  run_exports:
    strong:
    - __glibc >=2.28,<3.0.a0
  size: 23644746
  timestamp: 1765578629426
- conda: https://prefix.dev/conda-forge/noarch/tzdata-2026c-h151e31d_0.conda
  sha256: b928c30ddcb0e3f544c6eade8352737e6e610e263276b90232db6a578ef899d8
  md5: fcb489df604d100968b737f2cb6076c6
  license: LicenseRef-Public-Domain
  run_exports: {}
  size: 118849
  timestamp: 1784250406640