rustyphoenixclockmockbackend 1.7.1

This is the Rust version of https://gitlab.in2p3.fr/CTA-LAPP/PHOENIX_LIBS2/PhoenixClock project. This project aims to ease the use of clock in complex environments, especially distributed environments where latencies measurement has to be precise and reproductible when running unit tests. **PhoenixClock** provide **PGenericClock**, a template classe which takes two arguments : - The main clock backend (could be **clock**, **PClockNs** for nanoseconds, etc) - A mock of a clock, **PClockMock**, which can play, register and replay a sequence of clock calls These clocks are activated with a mode `PClockMode::PClockMode` which can be : - `PClockMode::NO_MOCK` : for a normal usage - `PClockMode::MOCK` : when the mock the desired clock is played - `PClockMode::MOCK_RECORD` : when the real clock backend is used but the clock mock is recording (could be usefull for debugging or to desing new unit tests quickly)
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
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_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.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_18.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.4-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_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.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.4-hef48ded_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.94.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_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.94.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.94.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_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/ld_impl_linux-aarch64-2.45.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_18.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.4-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_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_18.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.4-hd253d04_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.94.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_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.94.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.94.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_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.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_18.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.4-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_18.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.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.4-hef48ded_0.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.94.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_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.94.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.94.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_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/ld_impl_linux-aarch64-2.45.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_18.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.4-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_18.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.2.0-hef695bb_18.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.4-hd253d04_0.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.94.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_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.94.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.94.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_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/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.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/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.94.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_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.94.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.94.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_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/ld_impl_linux-aarch64-2.45.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_18.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/linux-aarch64/libzlib-1.3.2-hdc9db2a_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.94.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_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.94.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.94.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
  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-he420e7e_18.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_18.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/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.94.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_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.94.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.94.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-hcedddb3_18.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_18.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/linux-aarch64/libzlib-1.3.2-hdc9db2a_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.94.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_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.94.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.94.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_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/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda
      - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.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/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
      - conda: https://prefix.dev/conda-forge/linux-64/rust-1.94.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_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-64-15.2.0-hd446a21_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.94.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.94.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_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/ld_impl_linux-aarch64-2.45.1-default_h1979696_102.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.2.0-h8acb6b2_18.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/linux-aarch64/libzlib-1.3.2-hdc9db2a_2.conda
      - conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.94.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_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/libstdcxx-devel_linux-aarch64-15.2.0-ha7b1723_118.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-src-1.94.0-unix_0.conda
      - conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.94.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
  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
  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
  size: 3661455
  timestamp: 1774197460085
- 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-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-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-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
  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
  size: 728002
  timestamp: 1774197446916
- 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-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-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-64/libllvm22-22.1.4-hf7376ad_0.conda
  sha256: 6cf83bb8084b4b305fd2d6da9e3ab42acc0a01b19d11c4d7e9766dad91afce49
  md5: 80a690c83cba58ba483b90a07e59e721
  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
  size: 44242661
  timestamp: 1776821554393
- 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
  size: 113478
  timestamp: 1775825492909
- 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-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-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
  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
  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
  size: 63629
  timestamp: 1774072609062
- conda: https://prefix.dev/conda-forge/linux-64/lld-22.1.4-hef48ded_0.conda
  sha256: 48c3b1e956edf1cb681e80f5fb63721bf7b6a2bef753efb5fe728c39820bf403
  md5: e60aab03d62507183e4445ef7744af5b
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  - libllvm22 >=22.1.4,<22.2.0a0
  - libstdcxx >=14
  - libzlib >=1.3.2,<2.0a0
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - llvm ==22.1.4
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 11667260
  timestamp: 1776835857954
- conda: https://prefix.dev/conda-forge/linux-64/rust-1.94.0-h53717f1_0.conda
  sha256: 50bfa8a8f848c1cb0a75e25327c056e5dad46c9076d54471b01b08fa7fd64f94
  md5: f32243e302459c44eb66291ff690abd2
  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.94.0 h2c6d0dc_0
  - sysroot_linux-64 >=2.17
  license: MIT
  license_family: MIT
  size: 178422821
  timestamp: 1773066893036
- 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/_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-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
  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
  size: 4683754
  timestamp: 1774197535605
- 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-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-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-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
  size: 875596
  timestamp: 1774197520746
- 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/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-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-aarch64/libllvm22-22.1.4-hfd2ba90_0.conda
  sha256: e74a2a7befe8904970dd914ace807ce894c963343ad6a640f8a8da544c93f109
  md5: 6985556a15653f1df6639744cabef3f9
  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
  size: 43148886
  timestamp: 1776818850110
- 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
  size: 126102
  timestamp: 1775828008518
- 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-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/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
  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
  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
  size: 69833
  timestamp: 1774072605429
- conda: https://prefix.dev/conda-forge/linux-aarch64/lld-22.1.4-hd253d04_0.conda
  sha256: 9d77e337129dd2d0f2aa121d7960445aecfc2be146a918ded5235215bda38970
  md5: cdc7cbe52d8e3c25d82af528ed564572
  depends:
  - libgcc >=14
  - libllvm22 >=22.1.4,<22.2.0a0
  - libstdcxx >=14
  - libzlib >=1.3.2,<2.0a0
  - zstd >=1.5.7,<1.6.0a0
  constrains:
  - llvm ==22.1.4
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 12128762
  timestamp: 1776835791886
- conda: https://prefix.dev/conda-forge/linux-aarch64/rust-1.94.0-h6cf38e9_0.conda
  sha256: e9d97896c81ab7d628f341b5775e9e5dc21771efa8c66be21db818355e3d5bc8
  md5: 127575f27d8d7f7cfcd17eb24d8a46eb
  depends:
  - gcc_impl_linux-aarch64
  - libgcc >=14
  - libzlib >=1.3.1,<2.0a0
  - rust-std-aarch64-unknown-linux-gnu 1.94.0 hbe8e118_0
  - sysroot_linux-aarch64 >=2.17
  license: MIT
  license_family: MIT
  size: 140668117
  timestamp: 1773067599517
- 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
- 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/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/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/noarch/rust-src-1.94.0-unix_0.conda
  sha256: 0a06934a3db5171a6f567689afd6391015a2529d9bc608a9ed4a22b537b2b1bc
  md5: 5b577e4cac24014599e74481c9a2b5ec
  depends:
  - __unix
  constrains:
  - rust >=1.94.0,<1.94.1.0a0
  license: MIT
  license_family: MIT
  size: 4466770
  timestamp: 1773066264757
- conda: https://prefix.dev/conda-forge/noarch/rust-std-aarch64-unknown-linux-gnu-1.94.0-hbe8e118_0.conda
  sha256: b3b9f6624c01d34377742a44db9b8a2edbb849ea8285dd50361f76d6ef979203
  md5: 3b01077f6def6c44a89318546abfafbe
  depends:
  - __unix
  constrains:
  - rust >=1.94.0,<1.94.1.0a0
  license: MIT
  license_family: MIT
  size: 35066947
  timestamp: 1773067041901
- conda: https://prefix.dev/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.94.0-h2c6d0dc_0.conda
  sha256: 3980a10eee5f24ce7770c5d1665f93f363345c630bb6189176f3ab7bd9e8724d
  md5: df0c8674169061103f9cc0e112591eab
  depends:
  - __unix
  constrains:
  - rust >=1.94.0,<1.94.1.0a0
  license: MIT
  license_family: MIT
  size: 36890656
  timestamp: 1773066787379
- 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