rustyphoenixrequest 1.5.0

This library provides methods to mock request API. This is the Rust equivalent of https://gitlab.in2p3.fr/CTA-LAPP/PHOENIX_LIBS2/network/PhoenixRequest
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
version: 6
environments:
  coverage:
    channels:
    - url: https://prefix.dev/pixi-build-backends/
    - url: https://prefix.dev/conda-forge/
    - url: https://prefix.dev/phoenix/
    - url: https://prefix.dev/phoenix-dev/
    options:
      pypi-prerelease-mode: if-necessary-or-explicit
    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_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-15.2.0-h53410ce_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc-15.2.0-h0dff253_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he420e7e_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/icu-78.2-h33c6efd_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/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-hcc6f6b0_118.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.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.0-hf7376ad_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_118.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libxml2-16-2.15.1-hca6bf5a_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.15.1-he237659_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/lld-22.1.0-hef48ded_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.93.1-h53717f1_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.93.1-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.93.1-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/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.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_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.45.1-default_h5f4c503_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-15.2.0-hc908511_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-15.2.0-h2e72a27_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-hcedddb3_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/icu-78.2-hcab7f73_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/linux-aarch64/ld_impl_linux-aarch64-2.45.1-default_h1979696_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-15.2.0-h55c397f_118.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.2.0-h8acb6b2_18.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.0-hfd2ba90_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.2-he30d5cf_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-15.2.0-he19c465_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_118.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-16-2.15.1-h79dcc73_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.15.1-h825857f_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/lld-22.1.0-hd253d04_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.93.1-h6cf38e9_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.93.1-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.93.1-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/conda-forge/linux-aarch64/zstd-1.5.7-h85ac4a6_6.conda
  default:
    channels:
    - url: https://prefix.dev/pixi-build-backends/
    - url: https://prefix.dev/conda-forge/
    - url: https://prefix.dev/phoenix/
    - url: https://prefix.dev/phoenix-dev/
    options:
      pypi-prerelease-mode: if-necessary-or-explicit
    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_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-15.2.0-h53410ce_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc-15.2.0-h0dff253_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he420e7e_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/icu-78.2-h33c6efd_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/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-hcc6f6b0_118.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.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.0-hf7376ad_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_118.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libxml2-16-2.15.1-hca6bf5a_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.15.1-he237659_1.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/lld-22.1.0-hef48ded_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.93.1-h53717f1_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.93.1-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.93.1-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/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.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_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.45.1-default_h5f4c503_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-15.2.0-hc908511_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-15.2.0-h2e72a27_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-hcedddb3_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/icu-78.2-hcab7f73_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/linux-aarch64/ld_impl_linux-aarch64-2.45.1-default_h1979696_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-15.2.0-h55c397f_118.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.2.0-h8acb6b2_18.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.0-hfd2ba90_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.2-he30d5cf_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-15.2.0-he19c465_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_118.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-16-2.15.1-h79dcc73_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.15.1-h825857f_1.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/lld-22.1.0-hd253d04_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.93.1-h6cf38e9_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.93.1-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.93.1-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/conda-forge/linux-aarch64/zstd-1.5.7-h85ac4a6_6.conda
  doc:
    channels:
    - url: https://prefix.dev/pixi-build-backends/
    - url: https://prefix.dev/conda-forge/
    - url: https://prefix.dev/phoenix/
    - url: https://prefix.dev/phoenix-dev/
    options:
      pypi-prerelease-mode: if-necessary-or-explicit
    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_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-15.2.0-h53410ce_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc-15.2.0-h0dff253_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he420e7e_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-hcc6f6b0_118.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_118.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.93.1-h53717f1_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.93.1-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.93.1-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/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.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_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.45.1-default_h5f4c503_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-15.2.0-hc908511_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-15.2.0-h2e72a27_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-hcedddb3_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_9.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.45.1-default_h1979696_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-15.2.0-h55c397f_118.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.2.0-h8acb6b2_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-15.2.0-he19c465_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_118.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.93.1-h6cf38e9_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.93.1-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.93.1-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/conda-forge/linux-aarch64/zstd-1.5.7-h85ac4a6_6.conda
  prod:
    channels:
    - url: https://prefix.dev/pixi-build-backends/
    - url: https://prefix.dev/conda-forge/
    - url: https://prefix.dev/phoenix/
    - url: https://prefix.dev/phoenix-dev/
    options:
      pypi-prerelease-mode: if-necessary-or-explicit
    packages: {}
  publish:
    channels:
    - url: https://prefix.dev/pixi-build-backends/
    - url: https://prefix.dev/conda-forge/
    - url: https://prefix.dev/phoenix/
    - url: https://prefix.dev/phoenix-dev/
    options:
      pypi-prerelease-mode: if-necessary-or-explicit
    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_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he420e7e_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-hcc6f6b0_118.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_118.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.93.1-h53717f1_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.93.1-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.93.1-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/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.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_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-hcedddb3_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_9.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.45.1-default_h1979696_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-15.2.0-h55c397f_118.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.2.0-h8acb6b2_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-15.2.0-he19c465_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_118.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.93.1-h6cf38e9_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.93.1-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.93.1-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/conda-forge/linux-aarch64/zstd-1.5.7-h85ac4a6_6.conda
  test:
    channels:
    - url: https://prefix.dev/pixi-build-backends/
    - url: https://prefix.dev/conda-forge/
    - url: https://prefix.dev/phoenix/
    - url: https://prefix.dev/phoenix-dev/
    options:
      pypi-prerelease-mode: if-necessary-or-explicit
    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_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-15.2.0-h53410ce_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc-15.2.0-h0dff253_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he420e7e_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda
      - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-hcc6f6b0_118.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_118.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.93.1-h53717f1_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.93.1-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.93.1-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/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.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_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.45.1-default_h5f4c503_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-15.2.0-hc908511_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-15.2.0-h2e72a27_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-hcedddb3_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/kernel-headers_linux-aarch64-4.18.0-h05a177a_9.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.45.1-default_h1979696_101.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-15.2.0-h55c397f_118.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.2.0-h8acb6b2_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-15.2.0-he19c465_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_18.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_118.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.93.1-h6cf38e9_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.93.1-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.93.1-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/conda-forge/linux-aarch64/zstd-1.5.7-h85ac4a6_6.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
  size: 28948
  timestamp: 1770939786096
- 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
  size: 28926
  timestamp: 1770939656741
- conda: https://prefix.dev/conda-forge/linux-64/binutils-2.45.1-default_h4852527_101.conda
  sha256: 2851d34944b056d028543f0440fb631aeeff204151ea09589d8d9c13882395de
  md5: 9902aeb08445c03fb31e01beeb173988
  depends:
  - binutils_impl_linux-64 >=2.45.1,<2.45.2.0a0
  license: GPL-3.0-only
  license_family: GPL
  size: 35128
  timestamp: 1770267175160
- conda: https://prefix.dev/conda-forge/linux-aarch64/binutils-2.45.1-default_hf1166c9_101.conda
  sha256: 7113440420c6f31742c2b29d7590900362007a0bb0d31f9bc5c9a1379d9ab702
  md5: 77f58300ab7d95ce79f9c2c13ad72d5c
  depends:
  - binutils_impl_linux-aarch64 >=2.45.1,<2.45.2.0a0
  license: GPL-3.0-only
  license_family: GPL
  size: 35322
  timestamp: 1770267247190
- conda: https://prefix.dev/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_101.conda
  sha256: 74341b26a2b9475dc14ba3cf12432fcd10a23af285101883e720216d81d44676
  md5: 83aa53cb3f5fc849851a84d777a60551
  depends:
  - ld_impl_linux-64 2.45.1 default_hbd61a6d_101
  - sysroot_linux-64
  - zstd >=1.5.7,<1.6.0a0
  license: GPL-3.0-only
  license_family: GPL
  size: 3744895
  timestamp: 1770267152681
- conda: https://prefix.dev/conda-forge/linux-aarch64/binutils_impl_linux-aarch64-2.45.1-default_h5f4c503_101.conda
  sha256: e90ab42a5225dc1eaa6e4e7201cd7b8ed52dad6ec46814be7e5a4039433ae85c
  md5: df6e1dc38cbe5642350fa09d4a1d546b
  depends:
  - ld_impl_linux-aarch64 2.45.1 default_h1979696_101
  - sysroot_linux-aarch64
  - zstd >=1.5.7,<1.6.0a0
  license: GPL-3.0-only
  license_family: GPL
  size: 4741684
  timestamp: 1770267224406
- conda: https://prefix.dev/conda-forge/linux-64/conda-gcc-specs-15.2.0-h53410ce_18.conda
  sha256: 031dc4af908cf604039f0a02b0ce86c52609bb1adedeeb66f0d9f23894339095
  md5: bdc9bf8cb0635231c4a14cc1b4f3b19f
  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
  size: 31688
  timestamp: 1771378484515
- conda: https://prefix.dev/conda-forge/linux-aarch64/conda-gcc-specs-15.2.0-hc908511_18.conda
  sha256: 79c5abf9cdceb4cf7b6f0482577d7b9254ca986c12f2b50ec27834532dc48737
  md5: b3b7f3d902cccc801ada3133b2aff312
  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
  size: 31586
  timestamp: 1771378371559
- conda: https://prefix.dev/conda-forge/linux-64/gcc-15.2.0-h0dff253_18.conda
  sha256: 2b9dd26eb0c1d4ff93a1c87ff3a7fa81454f9b73c29aa7cdb439d067b03f7ced
  md5: 9a992f62edc4c3858cf5838360643b41
  depends:
  - conda-gcc-specs
  - gcc_impl_linux-64 15.2.0 he420e7e_18
  license: BSD-3-Clause
  license_family: BSD
  size: 29458
  timestamp: 1771378644331
- conda: https://prefix.dev/conda-forge/linux-aarch64/gcc-15.2.0-h2e72a27_18.conda
  sha256: c642e47a35d36d51435c6497118a7acbd96336ca8f854b192c9ec1fd7cac0dc6
  md5: 50c732a97bca7d9652863f0015d94f79
  depends:
  - conda-gcc-specs
  - gcc_impl_linux-aarch64 15.2.0 hcedddb3_18
  license: BSD-3-Clause
  license_family: BSD
  size: 29374
  timestamp: 1771378517123
- conda: https://prefix.dev/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he420e7e_18.conda
  sha256: a088cfd3ae6fa83815faa8703bc9d21cc915f17bd1b51aac9c16ddf678da21e4
  md5: cf56b6d74f580b91fd527e10d9a2e324
  depends:
  - binutils_impl_linux-64 >=2.45
  - libgcc >=15.2.0
  - libgcc-devel_linux-64 15.2.0 hcc6f6b0_118
  - libgomp >=15.2.0
  - libsanitizer 15.2.0 h90f66d4_18
  - libstdcxx >=15.2.0
  - libstdcxx-devel_linux-64 15.2.0 hd446a21_118
  - sysroot_linux-64
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 81814135
  timestamp: 1771378369317
- conda: https://prefix.dev/conda-forge/linux-aarch64/gcc_impl_linux-aarch64-15.2.0-hcedddb3_18.conda
  sha256: 12919d985a6c6787872699c7a3c295dad07f4084f2d850e9c7fe592ee0a6806b
  md5: 761a75d8c098913bc1186b26588051e0
  depends:
  - binutils_impl_linux-aarch64 >=2.45
  - libgcc >=15.2.0
  - libgcc-devel_linux-aarch64 15.2.0 h55c397f_118
  - libgomp >=15.2.0
  - libsanitizer 15.2.0 he19c465_18
  - libstdcxx >=15.2.0
  - libstdcxx-devel_linux-aarch64 15.2.0 ha7b1723_118
  - sysroot_linux-aarch64
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 73516504
  timestamp: 1771378256368
- conda: https://prefix.dev/conda-forge/linux-64/icu-78.2-h33c6efd_0.conda
  sha256: 142a722072fa96cf16ff98eaaf641f54ab84744af81754c292cb81e0881c0329
  md5: 186a18e3ba246eccfc7cff00cd19a870
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  - libstdcxx >=14
  license: MIT
  license_family: MIT
  size: 12728445
  timestamp: 1767969922681
- conda: https://prefix.dev/conda-forge/linux-aarch64/icu-78.2-hcab7f73_0.conda
  sha256: dcbaa3042084ac58685e3ef4547e4c4be9d37dc52b92ea18581288af95e48b52
  md5: 998ee7d53e32f7ab57fc35707285527e
  depends:
  - libgcc >=14
  - libstdcxx >=14
  license: MIT
  license_family: MIT
  size: 12851689
  timestamp: 1772208964788
- 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
  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
  size: 1248134
  timestamp: 1765578613607
- conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
  sha256: 565941ac1f8b0d2f2e8f02827cbca648f4d18cd461afc31f15604cd291b5c5f3
  md5: 12bd9a3f089ee6c9266a37dab82afabd
  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
  size: 725507
  timestamp: 1770267139900
- conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.45.1-default_h1979696_101.conda
  sha256: 44527364aa333be631913451c32eb0cae1e09343827e9ce3ccabd8d962584226
  md5: 35b2ae7fadf364b8e5fb8185aaeb80e5
  depends:
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - binutils_impl_linux-aarch64 2.45.1
  license: GPL-3.0-only
  license_family: GPL
  size: 875924
  timestamp: 1770267209884
- conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
  sha256: faf7d2017b4d718951e3a59d081eb09759152f93038479b768e3d612688f83f5
  md5: 0aa00f03f9e39fb9876085dee11a85d4
  depends:
  - __glibc >=2.17,<3.0.a0
  - _openmp_mutex >=4.5
  constrains:
  - libgcc-ng ==15.2.0=*_18
  - libgomp 15.2.0 he0feb66_18
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 1041788
  timestamp: 1771378212382
- conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_18.conda
  sha256: 43df385bedc1cab11993c4369e1f3b04b4ca5d0ea16cba6a0e7f18dbc129fcc9
  md5: 552567ea2b61e3a3035759b2fdb3f9a6
  depends:
  - _openmp_mutex >=4.5
  constrains:
  - libgcc-ng ==15.2.0=*_18
  - libgomp 15.2.0 h8acb6b2_18
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 622900
  timestamp: 1771378128706
- conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-64-15.2.0-hcc6f6b0_118.conda
  sha256: af69fc5852908d26e5b630b270982ac792506551dd6af1614bf0370dd5ab5746
  md5: 5d3a96d55f1be45fef88ee23155effd9
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 3085932
  timestamp: 1771378098166
- conda: https://prefix.dev/conda-forge/noarch/libgcc-devel_linux-aarch64-15.2.0-h55c397f_118.conda
  sha256: 661e29553769ceb5874eb1ed6c00263fcd36fac9f5fe0fee65d5e5cac3187ff3
  md5: 42284981c315916d916fb3156b8d5b9e
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 2364690
  timestamp: 1771378032404
- conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda
  sha256: 21337ab58e5e0649d869ab168d4e609b033509de22521de1bfed0c031bfc5110
  md5: 239c5e9546c38a1e884d69effcf4c882
  depends:
  - __glibc >=2.17,<3.0.a0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 603262
  timestamp: 1771378117851
- conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.2.0-h8acb6b2_18.conda
  sha256: fc716f11a6a8525e27a5d332ef6a689210b0d2a4dd1133edc0f530659aa9faa6
  md5: 4faa39bf919939602e594253bd673958
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 588060
  timestamp: 1771378040807
- 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
  size: 790176
  timestamp: 1754908768807
- 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
  size: 791226
  timestamp: 1754910975665
- conda: https://prefix.dev/conda-forge/linux-64/libllvm22-22.1.0-hf7376ad_0.conda
  sha256: 2efe1d8060c6afeb2df037fc61c182fb84e10f49cdbd29ed672e112d4d4ce2d7
  md5: 213f51bbcce2964ff2ec00d0fdd38541
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  - libstdcxx >=14
  - libxml2
  - libxml2-16 >=2.14.6
  - libzlib >=1.3.1,<2.0a0
  - zstd >=1.5.7,<1.6.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 44236214
  timestamp: 1772009776202
- conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm22-22.1.0-hfd2ba90_0.conda
  sha256: 7be3cdc0bf2747e9c590463a540060ab3ae961f44f0aa0b27acb86b37ba47ac4
  md5: c109137a7e54fde795637863f62485a1
  depends:
  - libgcc >=14
  - libstdcxx >=14
  - libxml2
  - libxml2-16 >=2.14.6
  - libzlib >=1.3.1,<2.0a0
  - zstd >=1.5.7,<1.6.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 43128981
  timestamp: 1771982780082
- conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda
  sha256: 755c55ebab181d678c12e49cced893598f2bab22d582fbbf4d8b83c18be207eb
  md5: c7c83eecbb72d88b940c249af56c8b17
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  constrains:
  - xz 5.8.2.*
  license: 0BSD
  size: 113207
  timestamp: 1768752626120
- conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.2-he30d5cf_0.conda
  sha256: 843c46e20519651a3e357a8928352b16c5b94f4cd3d5481acc48be2e93e8f6a3
  md5: 96944e3c92386a12755b94619bae0b35
  depends:
  - libgcc >=14
  constrains:
  - xz 5.8.2.*
  license: 0BSD
  size: 125916
  timestamp: 1768754941722
- conda: https://prefix.dev/conda-forge/linux-64/libsanitizer-15.2.0-h90f66d4_18.conda
  sha256: 0329e23d54a567c259adc962a62172eaa55e6ca33c105ef67b4f3cdb4ef70eaa
  md5: ff754fbe790d4e70cf38aea3668c3cb3
  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
  size: 8095113
  timestamp: 1771378289674
- conda: https://prefix.dev/conda-forge/linux-aarch64/libsanitizer-15.2.0-he19c465_18.conda
  sha256: 10c42c4e12972088cf0d5f57393f83e6727ad31bdb38ae46935641861f394698
  md5: 589c6fc3e744df871bbbf703f1e6ce98
  depends:
  - libgcc >=15.2.0
  - libstdcxx >=15.2.0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 7164557
  timestamp: 1771378185265
- conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
  sha256: 78668020064fdaa27e9ab65cd2997e2c837b564ab26ce3bf0e58a2ce1a525c6e
  md5: 1b08cd684f34175e4514474793d44bcb
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc 15.2.0 he0feb66_18
  constrains:
  - libstdcxx-ng ==15.2.0=*_18
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 5852330
  timestamp: 1771378262446
- conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_18.conda
  sha256: 31fdb9ffafad106a213192d8319b9f810e05abca9c5436b60e507afb35a6bc40
  md5: f56573d05e3b735cb03efeb64a15f388
  depends:
  - libgcc 15.2.0 h8acb6b2_18
  constrains:
  - libstdcxx-ng ==15.2.0=*_18
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 5541411
  timestamp: 1771378162499
- conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_118.conda
  sha256: 138ee40ba770abf4556ee9981879da9e33299f406a450831b48c1c397d7d0833
  md5: a50630d1810916fc252b2152f1dc9d6d
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 20669511
  timestamp: 1771378139786
- conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_118.conda
  sha256: 52afca5e24e0bbc840cf9c28b440dea2cebc4500e97084a38cdd27fdc8a3e57c
  md5: 99ea26f70c5e380294e760e8bdbaddff
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 17628403
  timestamp: 1771378058765
- conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.15.1-he237659_1.conda
  sha256: 047be059033c394bd32ae5de66ce389824352120b3a7c0eff980195f7ed80357
  md5: 417955234eccd8f252b86a265ccdab7f
  depends:
  - __glibc >=2.17,<3.0.a0
  - icu >=78.1,<79.0a0
  - libgcc >=14
  - libiconv >=1.18,<2.0a0
  - liblzma >=5.8.1,<6.0a0
  - libxml2-16 2.15.1 hca6bf5a_1
  - libzlib >=1.3.1,<2.0a0
  license: MIT
  license_family: MIT
  size: 45402
  timestamp: 1766327161688
- conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.15.1-h825857f_1.conda
  sha256: 9fe997c3e5a8207161d093a5d73f586ae46dc319cb054220086395e150dd1469
  md5: eb4665cdf78fd02d4abc4edf8c15b7b9
  depends:
  - icu >=78.1,<79.0a0
  - libgcc >=14
  - libiconv >=1.18,<2.0a0
  - liblzma >=5.8.1,<6.0a0
  - libxml2-16 2.15.1 h79dcc73_1
  - libzlib >=1.3.1,<2.0a0
  license: MIT
  license_family: MIT
  size: 47725
  timestamp: 1766327143205
- conda: https://prefix.dev/conda-forge/linux-64/libxml2-16-2.15.1-hca6bf5a_1.conda
  sha256: 8331284bf9ae641b70cdc0e5866502dd80055fc3b9350979c74bb1d192e8e09e
  md5: 3fdd8d99683da9fe279c2f4cecd1e048
  depends:
  - __glibc >=2.17,<3.0.a0
  - icu >=78.1,<79.0a0
  - libgcc >=14
  - libiconv >=1.18,<2.0a0
  - liblzma >=5.8.1,<6.0a0
  - libzlib >=1.3.1,<2.0a0
  constrains:
  - libxml2 2.15.1
  license: MIT
  license_family: MIT
  size: 555747
  timestamp: 1766327145986
- conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-16-2.15.1-h79dcc73_1.conda
  sha256: c76951407554d69dd348151f91cc2dc164efbd679b4f4e77deb2f9aa6eba3c12
  md5: e42758e7b065c34fd1b0e5143752f970
  depends:
  - icu >=78.1,<79.0a0
  - libgcc >=14
  - libiconv >=1.18,<2.0a0
  - liblzma >=5.8.1,<6.0a0
  - libzlib >=1.3.1,<2.0a0
  constrains:
  - libxml2 2.15.1
  license: MIT
  license_family: MIT
  size: 599721
  timestamp: 1766327134458
- conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
  sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
  md5: edb0dca6bc32e4f4789199455a1dbeb8
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=13
  constrains:
  - zlib 1.3.1 *_2
  license: Zlib
  license_family: Other
  size: 60963
  timestamp: 1727963148474
- conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
  sha256: 5a2c1eeef69342e88a98d1d95bff1603727ab1ff4ee0e421522acd8813439b84
  md5: 08aad7cbe9f5a6b460d0976076b6ae64
  depends:
  - libgcc >=13
  constrains:
  - zlib 1.3.1 *_2
  license: Zlib
  license_family: Other
  size: 66657
  timestamp: 1727963199518
- conda: https://prefix.dev/conda-forge/linux-64/lld-22.1.0-hef48ded_0.conda
  sha256: 4a40ef25911e2a42297558999bd0cb2560ff8366fcb6b5d4ace5e523ae205611
  md5: bf223892d1eb7fe60f5a577d4fbd1d22
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  - libllvm22 >=22.1.0,<22.2.0a0
  - libstdcxx >=14
  - libzlib >=1.3.1,<2.0a0
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - llvm ==22.1.0
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 11774344
  timestamp: 1772018738113
- conda: https://prefix.dev/conda-forge/linux-aarch64/lld-22.1.0-hd253d04_0.conda
  sha256: 2dac613406fe39a0f21a9a26505c33e5b2f2e73d0acae51fc0fb77547826ab08
  md5: 7eab550351acdbdb285e419401f53e2f
  depends:
  - libgcc >=14
  - libllvm22 >=22.1.0,<22.2.0a0
  - libstdcxx >=14
  - libzlib >=1.3.1,<2.0a0
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - llvm ==22.1.0
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 11893726
  timestamp: 1772018882205
- conda: https://prefix.dev/conda-forge/linux-64/rust-1.93.1-h53717f1_0.conda
  sha256: 21e067aabf5863eee02fc5681a6d56de888abea6eaa521abf756b707c0dbcd39
  md5: f05b79be5b5f13fecc79af60892bb1c4
  depends:
  - __glibc >=2.17,<3.0.a0
  - gcc_impl_linux-64
  - libgcc >=14
  - libzlib >=1.3.1,<2.0a0
  - rust-std-x86_64-unknown-linux-gnu 1.93.1 h2c6d0dc_0
  - sysroot_linux-64 >=2.17
  license: MIT
  license_family: MIT
  size: 177821736
  timestamp: 1771008968072
- conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.93.1-h6cf38e9_0.conda
  sha256: 0b3f1c4d552092345f32d4723adfbb77aba02175615cda40454963f4136cba3d
  md5: 27e0439ad967c39b26045a52764abc91
  depends:
  - gcc_impl_linux-aarch64
  - libgcc >=14
  - libzlib >=1.3.1,<2.0a0
  - rust-std-aarch64-unknown-linux-gnu 1.93.1 hbe8e118_0
  - sysroot_linux-aarch64 >=2.17
  license: MIT
  license_family: MIT
  size: 139979043
  timestamp: 1771009599403
- conda: https://prefix.dev/conda-forge/noarch/rust-src-1.93.1-unix_0.conda
  sha256: 0a3b42d73b02cf6d58561ad9394db19885cf8c85e431468a65a33407ace96660
  md5: a46314117619f908633193033c28ee0e
  depends:
  - __unix
  constrains:
  - rust >=1.93.1,<1.93.2.0a0
  license: MIT
  license_family: MIT
  size: 4432837
  timestamp: 1771008376862
- conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.93.1-hbe8e118_0.conda
  sha256: 82dbb0788d7896a9270ebc17712d41a1391fb2bebaed7847ce66985e6cbd6c92
  md5: 62fbbf47f940ed4c722a0cf156d86ba0
  depends:
  - __unix
  constrains:
  - rust >=1.93.1,<1.93.2.0a0
  license: MIT
  license_family: MIT
  size: 38356812
  timestamp: 1771009097984
- conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.93.1-h2c6d0dc_0.conda
  sha256: fb979ded3c378074457af671a4f7317e0e24ba9393a4ace33d7d87efe055752e
  md5: b202bf8a5113a75a130ca5f6f111dda7
  depends:
  - __unix
  constrains:
  - rust >=1.93.1,<1.93.2.0a0
  license: MIT
  license_family: MIT
  size: 38400767
  timestamp: 1771008857576
- 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
  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
  size: 23644746
  timestamp: 1765578629426
- conda: https://prefix.dev/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
  sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c
  md5: ad659d0a2b3e47e38d829aa8cad2d610
  license: LicenseRef-Public-Domain
  size: 119135
  timestamp: 1767016325805
- 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
  size: 601375
  timestamp: 1764777111296
- 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
  size: 614429
  timestamp: 1764777145593