rustyphoenixlecture 1.16.2

This project aims to provide a simple a powerfull lecture compilation to generate html web sites
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
version: 7
platforms:
- name: linux-64
- name: linux-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.45.1-default_h4852527_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-15.2.0-h53410ce_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc-15.2.0-h0dff253_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he0086c7_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_19.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_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.3-hb03c661_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.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_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/lld-22.1.7-hef48ded_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.96.0-h53717f1_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.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-15.2.0-hcc6f6b0_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.96.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.96.0-h2c6d0dc_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.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.45.1-default_hf1166c9_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.45.1-default_h5f4c503_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-15.2.0-hc908511_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-15.2.0-h2e72a27_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-h3530432_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.45.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.2.0-h8acb6b2_19.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_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.3-he30d5cf_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-15.2.0-he19c465_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-16-2.15.3-h064b767_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.15.3-h9ba8346_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.2-hdc9db2a_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/lld-22.1.7-hddaf64f_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.96.0-h6cf38e9_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-h85ac4a6_6.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-15.2.0-h55c397f_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.96.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.96.0-hbe8e118_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.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.45.1-default_h4852527_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-15.2.0-h53410ce_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc-15.2.0-h0dff253_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he0086c7_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_19.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_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.3-hb03c661_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.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_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/lld-22.1.7-hef48ded_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.96.0-h53717f1_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.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-15.2.0-hcc6f6b0_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.96.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.96.0-h2c6d0dc_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.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.45.1-default_hf1166c9_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.45.1-default_h5f4c503_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-15.2.0-hc908511_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-15.2.0-h2e72a27_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-h3530432_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.45.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.2.0-h8acb6b2_19.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_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.3-he30d5cf_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-15.2.0-he19c465_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-16-2.15.3-h064b767_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.15.3-h9ba8346_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.2-hdc9db2a_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/lld-22.1.7-hddaf64f_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.96.0-h6cf38e9_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-h85ac4a6_6.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-15.2.0-h55c397f_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.96.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.96.0-hbe8e118_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.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.45.1-default_h4852527_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-15.2.0-h53410ce_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc-15.2.0-h0dff253_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he0086c7_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.96.0-h53717f1_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.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-15.2.0-hcc6f6b0_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.96.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.96.0-h2c6d0dc_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
      - conda: https://prefix.dev/phoenix/linux-64/rustyphoenixlecture-1.16.0-hb0f4dca_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.45.1-default_hf1166c9_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.45.1-default_h5f4c503_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-15.2.0-hc908511_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-15.2.0-h2e72a27_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-h3530432_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.45.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.2.0-h8acb6b2_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-15.2.0-he19c465_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.2-hdc9db2a_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.96.0-h6cf38e9_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-h85ac4a6_6.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-15.2.0-h55c397f_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.96.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.96.0-hbe8e118_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
      - conda: https://prefix.dev/phoenix/linux-aarch64/rustyphoenixlecture-1.16.0-he8cfe8b_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.45.1-default_hfdba357_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he0086c7_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.96.0-h53717f1_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.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-15.2.0-hcc6f6b0_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.96.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.96.0-h2c6d0dc_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.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.45.1-default_h5f4c503_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-h3530432_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.45.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.2.0-h8acb6b2_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-15.2.0-he19c465_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.2-hdc9db2a_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.96.0-h6cf38e9_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-h85ac4a6_6.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-15.2.0-h55c397f_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.96.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.96.0-hbe8e118_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.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.45.1-default_h4852527_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-15.2.0-h53410ce_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc-15.2.0-h0dff253_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he0086c7_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.96.0-h53717f1_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.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-15.2.0-hcc6f6b0_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.96.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.96.0-h2c6d0dc_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.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.45.1-default_hf1166c9_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.45.1-default_h5f4c503_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-15.2.0-hc908511_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-15.2.0-h2e72a27_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-h3530432_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.45.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.2.0-h8acb6b2_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-15.2.0-he19c465_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_19.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.2-hdc9db2a_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.96.0-h6cf38e9_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-h85ac4a6_6.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-15.2.0-h55c397f_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_119.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.96.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.96.0-hbe8e118_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/sysroot_linux-aarch64-2.28-h585391f_9.conda
      - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.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.45.1-default_h4852527_102.conda
  sha256: 3c7c5580c1720206f28b7fa3d60d17986b3f32465e63009c14c9ae1ea64f926c
  md5: 212fe5f1067445544c99dc1c847d032c
  depends:
  - binutils_impl_linux-64 >=2.45.1,<2.45.2.0a0
  license: GPL-3.0-only
  license_family: GPL
  run_exports: {}
  size: 35436
  timestamp: 1774197482571
- conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_102.conda
  sha256: 0a7d405064f53b9d91d92515f1460f7906ee5e8523f3cd8973430e81219f4917
  md5: 8165352fdce2d2025bf884dc0ee85700
  depends:
  - ld_impl_linux-64 2.45.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: 3661455
  timestamp: 1774197460085
- conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-15.2.0-h53410ce_19.conda
  sha256: 1a53d0bd9d8197a7dc57f9b154e24d908ade29934e0a450ee6e40294d0a237f9
  md5: 3b482cadfc77f094c8b3016166292dfb
  depends:
  - gcc_impl_linux-64 >=15.2.0,<15.2.1.0a0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 31857
  timestamp: 1778269225076
- conda: https://prefix.dev/conda-forge/linux-64/gcc-15.2.0-h0dff253_19.conda
  sha256: 54a0d9ee655ba83b78b7a796f12224b26c24943d8970559ecc47ccd6c2b0fa72
  md5: 18ec2ee87e4f532afa459ce8ea9a6b02
  depends:
  - conda-gcc-specs
  - gcc_impl_linux-64 15.2.0 he0086c7_19
  license: BSD-3-Clause
  license_family: BSD
  run_exports: {}
  size: 29561
  timestamp: 1778269371353
- conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he0086c7_19.conda
  sha256: a48400ec4b73369c1c59babe4ad35821b63a88bba0ec40a80cea5f8c53a26b83
  md5: e3be72048d3c4a78b8e27ec48ba06252
  depends:
  - binutils_impl_linux-64 >=2.45
  - libgcc >=15.2.0
  - libgcc-devel_linux-64 15.2.0 hcc6f6b0_119
  - libgomp >=15.2.0
  - libsanitizer 15.2.0 h90f66d4_19
  - libstdcxx >=15.2.0
  - libstdcxx-devel_linux-64 15.2.0 hd446a21_119
  - sysroot_linux-64
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 81180457
  timestamp: 1778269124617
- conda: https://prefix.dev/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda
  sha256: fbf86c4a59c2ed05bbffb2ba25c7ed94f6185ec30ecb691615d42342baa1a16a
  md5: c80d8a3b84358cb967fa81e7075fbc8a
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  - libstdcxx >=14
  license: MIT
  license_family: MIT
  run_exports:
    weak:
    - icu >=78.3,<79.0a0
  size: 12723451
  timestamp: 1773822285671
- conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda
  sha256: 3d584956604909ff5df353767f3a2a2f60e07d070b328d109f30ac40cd62df6c
  md5: 18335a698559cdbcd86150a48bf54ba6
  depends:
  - __glibc >=2.17,<3.0.a0
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - binutils_impl_linux-64 2.45.1
  license: GPL-3.0-only
  license_family: GPL
  run_exports: {}
  size: 728002
  timestamp: 1774197446916
- conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda
  sha256: 8e0a3b5e41272e5678499b5dfc4cddb673f9e935de01eb0767ce857001229f46
  md5: 57736f29cc2b0ec0b6c2952d3f101b6a
  depends:
  - __glibc >=2.17,<3.0.a0
  - _openmp_mutex >=4.5
  constrains:
  - libgcc-ng ==15.2.0=*_19
  - libgomp 15.2.0 he0feb66_19
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 1041084
  timestamp: 1778269013026
- conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_19.conda
  sha256: 5abe4ab9d93f6c9757d654f1969ae2267d4505315c1f2f8fe705fd60af084f1b
  md5: faac990cb7aedc7f3a2224f2c9b0c26c
  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: 603817
  timestamp: 1778268942614
- 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_0.conda
  sha256: ab6918e2980c07257f0efaf37f1f11b2b5021872c21ad7c0aa29c10c87bbf6de
  md5: 780074abb055d271787dbb6659d77ee8
  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: 44349095
  timestamp: 1781670592467
- conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.3-hb03c661_0.conda
  sha256: ec30e52a3c1bf7d0425380a189d209a52baa03f22fb66dd3eb587acaa765bd6d
  md5: b88d90cad08e6bc8ad540cb310a761fb
  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: 113478
  timestamp: 1775825492909
- conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_19.conda
  sha256: 7a58892a52739ce4c0f7109de9e91b4353104748eb04fc6441d88e8af444ba99
  md5: 67eef12ce33f7ff99900c212d7076fc2
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=15.2.0
  - libstdcxx >=15.2.0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports:
    weak:
    - libsanitizer 15.2.0
  size: 7930689
  timestamp: 1778269054623
- conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda
  sha256: dff1058c76ec6b8759e41cefa2508162d00e4a5e6721aa68ec3fd10094e702dc
  md5: 5794b3bdc38177caf969dabd3af08549
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc 15.2.0 he0feb66_19
  constrains:
  - libstdcxx-ng ==15.2.0=*_19
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 5852044
  timestamp: 1778269036376
- 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_2.conda
  sha256: 55044c403570f0dc26e6364de4dc5368e5f3fc7ff103e867c487e2b5ab2bcda9
  md5: d87ff7921124eccd67248aa483c23fec
  depends:
  - __glibc >=2.17,<3.0.a0
  constrains:
  - zlib 1.3.2 *_2
  license: Zlib
  license_family: Other
  run_exports:
    weak:
    - libzlib >=1.3.2,<2.0a0
  size: 63629
  timestamp: 1774072609062
- conda: https://prefix.dev/conda-forge/linux-64/lld-22.1.7-hef48ded_0.conda
  sha256: 782715eb3b8643eb245955f26a12031171b1cc0acd538f2e43d4d73927d49da6
  md5: 093e23af54493b59e4c457a4d2d27af0
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  - libllvm22 >=22.1.7,<22.2.0a0
  - libstdcxx >=14
  - libzlib >=1.3.2,<2.0a0
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - llvm ==22.1.7
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  run_exports: {}
  size: 12074565
  timestamp: 1780537648439
- conda: https://prefix.dev/conda-forge/linux-64/rust-1.96.0-h53717f1_0.conda
  sha256: d084a53a1ce2cea8d6f9cf45108e516a629118dd3f8fb3113d87d1dcd3eea669
  md5: 5b80270d422d9fddf028cb4ce68370b2
  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.96.0 h2c6d0dc_0
  - sysroot_linux-64 >=2.17
  license: MIT
  license_family: MIT
  run_exports:
    strong_constrains:
    - __glibc >=2.17
  size: 171986391
  timestamp: 1780046427552
- conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda
  sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7
  md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829
  depends:
  - __glibc >=2.17,<3.0.a0
  - libzlib >=1.3.1,<2.0a0
  license: BSD-3-Clause
  license_family: BSD
  run_exports:
    weak:
    - zstd >=1.5.7,<1.6.0a0
  size: 601375
  timestamp: 1764777111296
- 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.45.1-default_hf1166c9_102.conda
  sha256: 63a1bec2fc966476bf7a387a20e8987edd5640d37a40ffb2f6e2217ef82b816b
  md5: 3a238b9dcf59d03a379712f270867d80
  depends:
  - binutils_impl_linux-aarch64 >=2.45.1,<2.45.2.0a0
  license: GPL-3.0-only
  license_family: GPL
  run_exports: {}
  size: 35511
  timestamp: 1774197558632
- conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.45.1-default_h5f4c503_102.conda
  sha256: 7fd4ddde2f0150d015dfa9f2db5f428bd1570078f270e4bd4f116487a52de169
  md5: 56a04d796d7e3cdc9f8d2e1278e91bff
  depends:
  - ld_impl_linux-aarch64 2.45.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: 4683754
  timestamp: 1774197535605
- conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-15.2.0-hc908511_19.conda
  sha256: 3eed2b3433e2eba33f15206f5d1dbb33d4f343eef91dbf37401f7c15a468f9d0
  md5: 0699b5799bcca5f7fe319162fefd216b
  depends:
  - gcc_impl_linux-aarch64 >=15.2.0,<15.2.1.0a0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 31724
  timestamp: 1778268975909
- conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-15.2.0-h2e72a27_19.conda
  sha256: 3da2899f86a37089afa64012b64b338e4c6214d9098db03deeee5412f28b1b6f
  md5: 97e6e56b47f5d9ca14b7de1ac527ee10
  depends:
  - conda-gcc-specs
  - gcc_impl_linux-aarch64 15.2.0 h3530432_19
  license: BSD-3-Clause
  license_family: BSD
  run_exports: {}
  size: 29553
  timestamp: 1778269106962
- conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-h3530432_19.conda
  sha256: cd23829b5fb7f3ff5f44eab2da1a993e06bdf759b681a0a7a73bb5783755b6b3
  md5: 66dfb62e7a47e2b511f9c5ee0ff1abf3
  depends:
  - binutils_impl_linux-aarch64 >=2.45
  - libgcc >=15.2.0
  - libgcc-devel_linux-aarch64 15.2.0 h55c397f_119
  - libgomp >=15.2.0
  - libsanitizer 15.2.0 he19c465_19
  - libstdcxx >=15.2.0
  - libstdcxx-devel_linux-aarch64 15.2.0 ha7b1723_119
  - sysroot_linux-aarch64
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 73237372
  timestamp: 1778268860495
- conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.45.1-default_h1979696_102.conda
  sha256: 7abd913d81a9bf00abb699e8987966baa2065f5132e37e815f92d90fc6bba530
  md5: a21644fc4a83da26452a718dc9468d5f
  depends:
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - binutils_impl_linux-aarch64 2.45.1
  license: GPL-3.0-only
  license_family: GPL
  run_exports: {}
  size: 875596
  timestamp: 1774197520746
- conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_19.conda
  sha256: 4592b096e553f67799ae70d4b6167eeda3ec74587d68c7aecbf4e7b1df136681
  md5: f35b3f52d0a2ec4ffe3c89ba135cdb9a
  depends:
  - _openmp_mutex >=4.5
  constrains:
  - libgomp 15.2.0 h8acb6b2_19
  - libgcc-ng ==15.2.0=*_19
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 622462
  timestamp: 1778268755949
- conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.2.0-h8acb6b2_19.conda
  sha256: 2370ef0ffcbae5bede3c4bf136add4abc257245eb91f724c99bb4a43116c5a83
  md5: c5e8a379c4a2ec2aea4ba22758c001d9
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports:
    strong:
    - _openmp_mutex >=4.5
  size: 587387
  timestamp: 1778268674393
- 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_0.conda
  sha256: 374625620064d1c857d08c41b2785d728d577b1ec44247a1b6e4d7c98a846b2d
  md5: 4f6974d7955b108b00900074f441f55d
  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: 43333638
  timestamp: 1781667927999
- conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.3-he30d5cf_0.conda
  sha256: d61962b9cd54c3554361550203c64d5b65b71e3058a285b66e4b04b9769f0a5c
  md5: 76298a9e6d71ee6e832a8d0d7373b261
  depends:
  - libgcc >=14
  constrains:
  - xz 5.8.3.*
  license: 0BSD
  run_exports:
    weak:
    - liblzma >=5.8.3,<6.0a0
  size: 126102
  timestamp: 1775828008518
- conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-15.2.0-he19c465_19.conda
  sha256: 8115604f113fe2b7be95b2d22183a4dda5779c1cc6db4b826af800581498b4b3
  md5: 95210a1edbd7fc6e12afc9f8276f450a
  depends:
  - libgcc >=15.2.0
  - libstdcxx >=15.2.0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports:
    weak:
    - libsanitizer 15.2.0
  size: 7067965
  timestamp: 1778268796086
- conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_19.conda
  sha256: 1dadc45e599f510dd5f97141dddcdbb9844d9f1430c1f3a38075cf1c58f87b4e
  md5: 543fbc8d71f2a0baf04cf88ce96cb8bb
  depends:
  - libgcc 15.2.0 h8acb6b2_19
  constrains:
  - libstdcxx-ng ==15.2.0=*_19
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 5546559
  timestamp: 1778268777463
- conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-16-2.15.3-h064b767_0.conda
  sha256: 96e9bd642c013ce3407c23b3819204ea8a591567d62b49baa4bafb2f1487326c
  md5: 876c5457664559cdc67c4ac71e2945cb
  depends:
  - libgcc >=14
  - libiconv >=1.18,<2.0a0
  - liblzma >=5.8.3,<6.0a0
  - libzlib >=1.3.2,<2.0a0
  constrains:
  - icu <0.0a0
  - libxml2 2.15.3
  license: MIT
  license_family: MIT
  run_exports: {}
  size: 601420
  timestamp: 1776376789358
- conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.15.3-h9ba8346_0.conda
  sha256: 74aa3c62e0ec4491343b95ce4ca8812ad2f9bb015369e29cb3b4b9b4302d8cb0
  md5: 15078261d03e3c3c83a42df605f7f34a
  depends:
  - libgcc >=14
  - libiconv >=1.18,<2.0a0
  - liblzma >=5.8.3,<6.0a0
  - libxml2-16 2.15.3 h064b767_0
  - libzlib >=1.3.2,<2.0a0
  constrains:
  - icu <0.0a0
  license: MIT
  license_family: MIT
  run_exports:
    weak:
    - libxml2
    - libxml2-16 >=2.15.3
  size: 48311
  timestamp: 1776376798296
- conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.2-hdc9db2a_2.conda
  sha256: eb111e32e5a7313a5bf799c7fb2419051fa2fe7eff74769fac8d5a448b309f7f
  md5: 502006882cf5461adced436e410046d1
  constrains:
  - zlib 1.3.2 *_2
  license: Zlib
  license_family: Other
  run_exports:
    weak:
    - libzlib >=1.3.2,<2.0a0
  size: 69833
  timestamp: 1774072605429
- conda: https://prefix.dev/conda-forge/linux-aarch64/lld-22.1.7-hddaf64f_0.conda
  sha256: 8893a88795f7209cbbc6ef75452a78ccae4831cbae9c40f5cb7d2dc6ec3bc6b2
  md5: b3fab3ed95be67b7fa417440325c4fe0
  depends:
  - libgcc >=14
  - libllvm22 >=22.1.7,<22.2.0a0
  - libstdcxx >=14
  - libzlib >=1.3.2,<2.0a0
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - llvm ==22.1.7
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  run_exports: {}
  size: 11970850
  timestamp: 1780537534632
- conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.96.0-h6cf38e9_0.conda
  sha256: 88f399576f66bc612473248413cbac5624eb00ad1a52831662ce1fc0a38916f8
  md5: 489afc4ab72277b53368d9cbebb9af4d
  depends:
  - gcc_impl_linux-aarch64
  - libgcc >=14
  - libzlib >=1.3.2,<2.0a0
  - rust-std-aarch64-unknown-linux-gnu 1.96.0 hbe8e118_0
  - sysroot_linux-aarch64 >=2.17
  license: MIT
  license_family: MIT
  run_exports:
    strong_constrains:
    - __glibc >=2.17
  size: 133391007
  timestamp: 1780047167214
- conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-h85ac4a6_6.conda
  sha256: 569990cf12e46f9df540275146da567d9c618c1e9c7a0bc9d9cfefadaed20b75
  md5: c3655f82dcea2aa179b291e7099c1fcc
  depends:
  - libzlib >=1.3.1,<2.0a0
  license: BSD-3-Clause
  license_family: BSD
  run_exports:
    weak:
    - zstd >=1.5.7,<1.6.0a0
  size: 614429
  timestamp: 1764777145593
- 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-15.2.0-hcc6f6b0_119.conda
  sha256: 38a557eba305468ac1f90ac85e50d8defd76141cb0b8a43b2fc1aca71dd5d5f2
  md5: 683fcb168e1df9a21fa80d5aa2d9330b
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 3095909
  timestamp: 1778268932148
- conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-15.2.0-h55c397f_119.conda
  sha256: fe600a63a39281e6994e27fe79360cd6bd8e576c3ce1af32ce8673b011f46c21
  md5: 18ad0f0b94071d91fa962a1bf3983a78
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 2353893
  timestamp: 1778268665954
- conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_119.conda
  sha256: a2385f3611d5cd25378f9cf2367183320731709c067ddd08d43330d3170f15b8
  md5: bcfe7eae40158c3e355d2f9d3ed41230
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 20765069
  timestamp: 1778268963689
- conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_119.conda
  sha256: 6f7ceee16070781b7d642a37a35ffdf09c66796d3df105c919526210ce220443
  md5: 61da34d67f58dd4cf16683f6cdcb06c8
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  run_exports: {}
  size: 17627362
  timestamp: 1778268687968
- conda: https://prefix.dev/conda-forge/noarch/rust-src-1.96.0-unix_0.conda
  sha256: 36d92abd857438ed57261ab633ee5358c0e9be2cfa3862dbe60b158feb460382
  md5: 86c8f131883124c6f83377ec856dd765
  depends:
  - __unix
  constrains:
  - rust >=1.96.0,<1.96.1.0a0
  license: MIT
  license_family: MIT
  run_exports: {}
  size: 4605028
  timestamp: 1780045760017
- conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.96.0-hbe8e118_0.conda
  sha256: 8e86745ce1655e126d52b6a1908e4cd8721dc031fc944dbc5ba12838f6f945a5
  md5: c6a198001bc91ef594731364d10dbce3
  depends:
  - __unix
  constrains:
  - rust >=1.96.0,<1.96.1.0a0
  license: MIT
  license_family: MIT
  run_exports: {}
  size: 35596879
  timestamp: 1780046657529
- conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.96.0-h2c6d0dc_0.conda
  sha256: e8c453fc331eedd6b7a02356d177802a2c03b0bc6490d86c0e63c15ef172d53f
  md5: cbbc8546ba8381cb792744564cec0430
  depends:
  - __unix
  constrains:
  - rust >=1.96.0,<1.96.1.0a0
  license: MIT
  license_family: MIT
  run_exports: {}
  size: 36676677
  timestamp: 1780046295074
- 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-2025c-hc9c84f9_1.conda
  sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c
  md5: ad659d0a2b3e47e38d829aa8cad2d610
  license: LicenseRef-Public-Domain
  run_exports: {}
  size: 119135
  timestamp: 1767016325805
- conda: https://prefix.dev/phoenix/linux-64/rustyphoenixlecture-1.16.0-hb0f4dca_0.conda
  sha256: be6ce20dfcaabf5a8466a18d9fb472851effb19df7f76c95664439e06efd26c3
  md5: 30aeb487131565d7a6cca7b67ddd7e28
  depends:
  - libgcc >=15
  constrains:
  - __glibc >=2.17
  license: CECILL-C
  run_exports: {}
  size: 852921
  timestamp: 1781706725222
- conda: https://prefix.dev/phoenix/linux-aarch64/rustyphoenixlecture-1.16.0-he8cfe8b_0.conda
  sha256: a94ee664dcbf762e3cab66487c58837db3f5353b91ec6c4ebee268559b21d7fd
  md5: 197efbacfd5613e5c99d9fa10a3a6eff
  depends:
  - libgcc >=15
  constrains:
  - __glibc >=2.17
  license: CECILL-C
  run_exports: {}
  size: 827830
  timestamp: 1781706725036