-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathWrapdb-projects.html
2517 lines (2481 loc) · 145 KB
/
Wrapdb-projects.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<base href=".">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Meson WrapDB packages</title>
<link rel="stylesheet" href="assets/css/dark-frontend.css" type="text/css" title="dark">
<link rel="alternate stylesheet" href="assets/css/light-frontend.css" type="text/css" title="light">
<link rel="stylesheet" href="assets/css/bootstrap-toc.min.css" type="text/css">
<link rel="stylesheet" href="assets/css/jquery.mCustomScrollbar.min.css">
<link rel="stylesheet" href="assets/js/search/enable_search.css" type="text/css">
<link rel="stylesheet" href="assets/css/notes.css" type="text/css">
<link rel="stylesheet" href="assets/css/prism-tomorrow.css" type="text/css" title="dark">
<link rel="alternate stylesheet" href="assets/css/prism.css" type="text/css" title="light">
<script src="assets/js/mustache.min.js"></script>
<script src="assets/js/jquery.js"></script>
<script src="assets/js/bootstrap.js"></script>
<script src="assets/js/scrollspy.js"></script>
<script src="assets/js/typeahead.jquery.min.js"></script>
<script src="assets/js/search.js"></script>
<script src="assets/js/compare-versions.js"></script>
<script src="assets/js/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="assets/js/bootstrap-toc.min.js"></script>
<script src="assets/js/jquery.touchSwipe.min.js"></script>
<script src="assets/js/anchor.min.js"></script>
<script src="assets/js/tag_filtering.js"></script>
<script src="assets/js/language_switching.js"></script>
<script src="assets/js/styleswitcher.js"></script>
<script src="assets/js/lines_around_headings.js"></script>
<script src="assets/js/prism-core.js"></script>
<script src="assets/js/prism-autoloader.js"></script>
<script src="assets/js/prism_autoloader_path_override.js"></script>
<script src="assets/js/prism-keep-markup.js"></script>
<script src="assets/js/trie.js"></script>
<link rel="icon" type="image/png" href="assets/images/favicon.png">
<link rel="shortcut icon" href="assets/images/favicon.png">
</head>
<body class="no-script
">
<script>
$('body').removeClass('no-script');
</script>
<nav class="navbar navbar-fixed-top navbar-default" id="topnav">
<div class="container-fluid">
<div class="navbar-right">
<a id="toc-toggle">
<span class="glyphicon glyphicon-menu-right"></span>
<span class="glyphicon glyphicon-menu-left"></span>
</a>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-wrapper" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<span title="light mode switch" class="glyphicon glyphicon-sunglasses pull-right" id="lightmode-icon"></span>
<form class="navbar-form pull-right" id="navbar-search-form">
<div class="form-group has-feedback">
<input type="text" class="form-control input-sm" name="search" id="sidenav-lookup-field" placeholder="search" disabled>
<span class="glyphicon glyphicon-search form-control-feedback" id="search-mgn-glass"></span>
</div>
</form>
</div>
<div class="navbar-header">
<a id="sidenav-toggle">
<span class="glyphicon glyphicon-menu-right"></span>
<span class="glyphicon glyphicon-menu-left"></span>
</a>
<a id="home-link" href="index.html" class="hotdoc-navbar-brand">
<img src="assets/images/meson_logo.png" alt="Home">
</a>
</div>
<div class="navbar-collapse collapse" id="navbar-wrapper">
<ul class="nav navbar-nav" id="menu">
<li class="dropdown">
<a class="dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Modules <span class="caret"></span>
</a>
<ul class="dropdown-menu" id="modules-menu">
<li>
<a href="CMake-module.html">CMake</a>
</li>
<li>
<a href="Cuda-module.html">CUDA</a>
</li>
<li>
<a href="Dlang-module.html">Dlang</a>
</li>
<li>
<a href="External-Project-module.html">External Project</a>
</li>
<li>
<a href="Fs-module.html">Filesystem</a>
</li>
<li>
<a href="Gnome-module.html">GNOME</a>
</li>
<li>
<a href="Hotdoc-module.html">Hotdoc</a>
</li>
<li>
<a href="i18n-module.html">i18n</a>
</li>
<li>
<a href="Icestorm-module.html">Icestorm</a>
</li>
<li>
<a href="Java-module.html">Java</a>
</li>
<li>
<a href="Keyval-module.html">Keyval</a>
</li>
<li>
<a href="Pkgconfig-module.html">Pkgconfig</a>
</li>
<li>
<a href="Python-3-module.html">Python 3</a>
</li>
<li>
<a href="Python-module.html">Python</a>
</li>
<li>
<a href="Qt4-module.html">Qt4</a>
</li>
<li>
<a href="Qt5-module.html">Qt5</a>
</li>
<li>
<a href="Qt6-module.html">Qt6</a>
</li>
<li>
<a href="Rust-module.html">Rust</a>
</li>
<li>
<a href="Simd-module.html">Simd</a>
</li>
<li>
<a href="SourceSet-module.html">SourceSet</a>
</li>
<li>
<a href="Wayland-module.html">Wayland</a>
</li>
<li>
<a href="Windows-module.html">Windows</a>
</li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Quick References <span class="caret"></span>
</a>
<ul class="dropdown-menu" id="quick-refs-menu">
<li>
<a href="Reference-manual.html">Functions</a>
</li>
<li>
<a href="Build-options.html">Options</a>
</li>
<li>
<a href="Configuration.html">Configuration</a>
</li>
<li>
<a href="Dependencies.html">Dependencies</a>
</li>
<li>
<a href="Unit-tests.html">Tests</a>
</li>
<li>
<a href="Syntax.html">Syntax</a>
</li>
</ul>
</li>
</ul>
<div class="hidden-xs hidden-sm navbar-text navbar-center">
<p><b>The Meson Build System</b></p>
</div>
</div>
</div>
</nav>
<main>
<div data-extension="core" data-hotdoc-in-toplevel="True" data-hotdoc-project="Meson-documentation" data-hotdoc-ref="Wrapdb-projects.html" class="page_container" id="page-wrapper">
<script src="assets/js/utils.js"></script>
<div class="panel panel-collapse oc-collapsed" id="sidenav" data-hotdoc-role="navigation">
<script src="assets/js/full-width.js"></script>
<div id="sitenav-wrapper">
<iframe src="hotdoc-sitemap.html" id="sitenav-frame"></iframe>
</div>
</div>
<div id="body">
<div id="main">
<div id="page-description" data-hotdoc-role="main">
<h1 id="meson-wrapdb-packages">Meson WrapDB packages</h1>
<p>This is a list of projects that have either an upstream Meson build system, or a
port maintained by the Meson team. <a href="Wrap-dependency-system-manual.html">They can be used by your project to provide
its dependencies</a>.</p>
<p>Use the command line <code>meson wrap install <project></code> to install the wrap file of
any of those projects into your project's <code>subprojects/</code> directory.
See <a href="Using-wraptool.html">Meson command line documentation</a>.</p>
<p>If you wish to add your own project into this list, please submit your wrap file
in a <a href="https://github.com/mesonbuild/wrapdb">Pull Request</a>.
See <a href="Adding-new-projects-to-wrapdb.html">Meson documentation</a>
for more details.</p>
<table>
<thead>
<tr>
<th> Project</th>
<th> Versions</th>
<th> Provided dependencies</th>
<th> Provided programs</th>
</tr>
</thead>
<tbody>
<tr>
<td> abseil-cpp</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/abseil-cpp_20240722.0-3/abseil-cpp.wrap">20240722.0-3</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/abseil-cpp_20230802.1-2/abseil-cpp.wrap">20230802.1-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/abseil-cpp_20230802.0-3/abseil-cpp.wrap">20230802.0-3</a>, <a href="https://wrapdb.mesonbuild.com/v2/abseil-cpp_20230125.1-5/abseil-cpp.wrap">20230125.1-5</a>, <a href="https://wrapdb.mesonbuild.com/v2/abseil-cpp_20220623.0-2/abseil-cpp.wrap">20220623.0-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/abseil-cpp_20211102.0-3/abseil-cpp.wrap">20211102.0-3</a>, <a href="https://wrapdb.mesonbuild.com/v2/abseil-cpp_20210324.2-4/abseil-cpp.wrap">20210324.2-4</a>, <a href="https://wrapdb.mesonbuild.com/v2/abseil-cpp_20210324.1-4/abseil-cpp.wrap">20210324.1-4</a>, <a href="https://wrapdb.mesonbuild.com/v2/abseil-cpp_20200923.2-1/abseil-cpp.wrap">20200923.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/abseil-cpp_20200225.2-3/abseil-cpp.wrap">20200225.2-3</a>
</td>
<td> absl_base, absl_container, absl_crc, absl_debugging, absl_flags, absl_hash, absl_log, absl_numeric, absl_profiling, absl_random, absl_status, absl_strings, absl_synchronization, absl_time, absl_types, absl_algorithm_container, absl_any_invocable, absl_bad_any_cast_impl, absl_bad_optional_access, absl_bad_variant_access, absl_bind_front, absl_city, absl_civil_time, absl_cleanup, absl_cord, absl_cord_internal, absl_cordz_functions, absl_cordz_handle, absl_cordz_info, absl_cordz_sample_token, absl_core_headers, absl_crc32c, absl_debugging_internal, absl_demangle_internal, absl_die_if_null, absl_examine_stack, absl_exponential_biased, absl_failure_signal_handler, absl_flags_commandlineflag, absl_flags_commandlineflag_internal, absl_flags_config, absl_flags_internal, absl_flags_marshalling, absl_flags_parse, absl_flags_private_handle_accessor, absl_flags_program_name, absl_flags_reflection, absl_flags_usage, absl_flags_usage_internal, absl_flat_hash_map, absl_flat_hash_set, absl_function_ref, absl_graphcycles_internal, absl_hashtablez_sampler, absl_inlined_vector, absl_int128, absl_leak_check, absl_log_initialize, absl_log_internal_check_op, absl_log_internal_message, absl_log_severity, absl_low_level_hash, absl_memory, absl_optional, absl_periodic_sampler, absl_random_bit_gen_ref, absl_random_distributions, absl_random_internal_distribution_test_util, absl_random_internal_platform, absl_random_internal_pool_urbg, absl_random_internal_randen, absl_random_internal_randen_hwaes, absl_random_internal_randen_hwaes_impl, absl_random_internal_randen_slow, absl_random_internal_seed_material, absl_random_random, absl_random_seed_gen_exception, absl_random_seed_sequences, absl_raw_hash_set, absl_raw_logging_internal, absl_scoped_set_env, absl_span, absl_spinlock_wait, absl_stacktrace, absl_statusor, absl_str_format, absl_str_format_internal, absl_strerror, absl_string_view, absl_strings_internal, absl_symbolize, absl_throw_delegate, absl_time_zone, absl_type_traits, absl_utility, absl_variant</td>
<td></td>
</tr>
<tr>
<td> arduinocore-avr</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/arduinocore-avr_1.8.2-1/arduinocore-avr.wrap">1.8.2-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/arduinocore-avr_1.6.20-1/arduinocore-avr.wrap">1.6.20-1</a>
</td>
<td></td>
<td></td>
</tr>
<tr>
<td> argparse</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/argparse_3.2-1/argparse.wrap">3.2-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/argparse_3.1-2/argparse.wrap">3.1-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/argparse_3.0-1/argparse.wrap">3.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/argparse_2.9-1/argparse.wrap">2.9-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/argparse_2.6-1/argparse.wrap">2.6-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/argparse_2.5-1/argparse.wrap">2.5-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/argparse_2.4-1/argparse.wrap">2.4-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/argparse_2.2-1/argparse.wrap">2.2-1</a>
</td>
<td> argparse</td>
<td></td>
</tr>
<tr>
<td> argtable3</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/argtable3_3.2.2-1/argtable3.wrap">3.2.2-1</a></strong></big><br>
</td>
<td> argtable3</td>
<td></td>
</tr>
<tr>
<td> argu-parser</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/argu-parser_0.0.1-1/argu-parser.wrap">0.0.1-1</a></strong></big><br>
</td>
<td> argu-parser</td>
<td></td>
</tr>
<tr>
<td> asio</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/asio_1.30.2-2/asio.wrap">1.30.2-2</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/asio_1.28.1-1/asio.wrap">1.28.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/asio_1.24.0-1/asio.wrap">1.24.0-1</a>
</td>
<td> asio</td>
<td></td>
</tr>
<tr>
<td> backward-cpp</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/backward-cpp_1.6-3/backward-cpp.wrap">1.6-3</a></strong></big><br>
</td>
<td> backward-cpp</td>
<td></td>
</tr>
<tr>
<td> bdwgc</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/bdwgc_8.2.8-1/bdwgc.wrap">8.2.8-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/bdwgc_8.2.2-1/bdwgc.wrap">8.2.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/bdwgc_8.2.0-1/bdwgc.wrap">8.2.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/bdwgc_7.6.8-1/bdwgc.wrap">7.6.8-1</a>
</td>
<td> gc</td>
<td></td>
</tr>
<tr>
<td> blueprint-compiler</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/blueprint-compiler_0.16.0-1/blueprint-compiler.wrap">0.16.0-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/blueprint-compiler_0.10.0-1/blueprint-compiler.wrap">0.10.0-1</a>
</td>
<td></td>
<td> blueprint-compiler</td>
</tr>
<tr>
<td> box2d</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/box2d_2.4.1-3/box2d.wrap">2.4.1-3</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/box2d_2.3.1-7/box2d.wrap">2.3.1-7</a>
</td>
<td> box2d</td>
<td></td>
</tr>
<tr>
<td> bshoshany-thread-pool</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/bshoshany-thread-pool_5.0.0-1/bshoshany-thread-pool.wrap">5.0.0-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/bshoshany-thread-pool_4.1.0-1/bshoshany-thread-pool.wrap">4.1.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/bshoshany-thread-pool_4.0.1-1/bshoshany-thread-pool.wrap">4.0.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/bshoshany-thread-pool_4.0.0-1/bshoshany-thread-pool.wrap">4.0.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/bshoshany-thread-pool_3.5.0-1/bshoshany-thread-pool.wrap">3.5.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/bshoshany-thread-pool_3.4.0-1/bshoshany-thread-pool.wrap">3.4.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/bshoshany-thread-pool_3.3.0-1/bshoshany-thread-pool.wrap">3.3.0-1</a>
</td>
<td> bshoshany-thread-pool</td>
<td></td>
</tr>
<tr>
<td> bzip2</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/bzip2_1.0.8-1/bzip2.wrap">1.0.8-1</a></strong></big><br>
</td>
<td> bzip2</td>
<td></td>
</tr>
<tr>
<td> c-ares</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/c-ares_1.34.4-1/c-ares.wrap">1.34.4-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/c-ares_1.24.0-1/c-ares.wrap">1.24.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/c-ares_1.22.1-2/c-ares.wrap">1.22.1-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/c-ares_1.20.1-1/c-ares.wrap">1.20.1-1</a>
</td>
<td> libcares</td>
<td></td>
</tr>
<tr>
<td> c-flags</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/c-flags_1.5.8-1/c-flags.wrap">1.5.8-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/c-flags_1.5.4-1/c-flags.wrap">1.5.4-1</a>
</td>
<td> c-flags</td>
<td></td>
</tr>
<tr>
<td> cairo</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cairo_1.18.4-1/cairo.wrap">1.18.4-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cairo_1.18.2-1/cairo.wrap">1.18.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cairo_1.18.0-1/cairo.wrap">1.18.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cairo_1.17.8-1/cairo.wrap">1.17.8-1</a>
</td>
<td> cairo, cairo-gobject</td>
<td></td>
</tr>
<tr>
<td> cairomm</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cairomm_1.18.0-1/cairomm.wrap">1.18.0-1</a></strong></big><br>
</td>
<td> cairomm-1.16</td>
<td></td>
</tr>
<tr>
<td> catch</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/catch_2.2.2-1/catch.wrap">2.2.2-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/catch_2.2.1-2/catch.wrap">2.2.1-2</a>
</td>
<td></td>
<td></td>
</tr>
<tr>
<td> catch2</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/catch2_3.8.1-1/catch2.wrap">3.8.1-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/catch2_3.8.0-1/catch2.wrap">3.8.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_3.7.1-1/catch2.wrap">3.7.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_3.7.0-1/catch2.wrap">3.7.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_3.6.0-1/catch2.wrap">3.6.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_3.5.4-1/catch2.wrap">3.5.4-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_3.5.3-1/catch2.wrap">3.5.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_3.5.2-1/catch2.wrap">3.5.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_3.4.0-1/catch2.wrap">3.4.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_3.3.2-1/catch2.wrap">3.3.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_3.2.0-1/catch2.wrap">3.2.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_3.1.0-1/catch2.wrap">3.1.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_2.13.8-1/catch2.wrap">2.13.8-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_2.13.7-1/catch2.wrap">2.13.7-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_2.13.3-2/catch2.wrap">2.13.3-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_2.11.3-1/catch2.wrap">2.11.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_2.11.1-1/catch2.wrap">2.11.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_2.9.0-1/catch2.wrap">2.9.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_2.8.0-1/catch2.wrap">2.8.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_2.7.2-1/catch2.wrap">2.7.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_2.5.0-1/catch2.wrap">2.5.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/catch2_2.4.1-1/catch2.wrap">2.4.1-1</a>
</td>
<td> catch2, catch2-with-main</td>
<td></td>
</tr>
<tr>
<td> catchorg-clara</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/catchorg-clara_1.1.5-1/catchorg-clara.wrap">1.1.5-1</a></strong></big><br>
</td>
<td></td>
<td></td>
</tr>
<tr>
<td> centurion</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/centurion_7.3.0-1/centurion.wrap">7.3.0-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/centurion_7.2.0-1/centurion.wrap">7.2.0-1</a>
</td>
<td> centurion</td>
<td></td>
</tr>
<tr>
<td> cereal</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cereal_1.3.2-1/cereal.wrap">1.3.2-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cereal_1.3.0-1/cereal.wrap">1.3.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cereal_1.2.2-1/cereal.wrap">1.2.2-1</a>
</td>
<td> cereal</td>
<td></td>
</tr>
<tr>
<td> cexception</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cexception_1.3.4-1/cexception.wrap">1.3.4-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cexception_1.3.3-1/cexception.wrap">1.3.3-1</a>
</td>
<td> cexception</td>
<td></td>
</tr>
<tr>
<td> cglm</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cglm_0.9.6-1/cglm.wrap">0.9.6-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cglm_0.9.4-1/cglm.wrap">0.9.4-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cglm_0.9.2-1/cglm.wrap">0.9.2-1</a>
</td>
<td> cglm</td>
<td></td>
</tr>
<tr>
<td> check</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/check_0.15.2-5/check.wrap">0.15.2-5</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/check_0.14.0-1/check.wrap">0.14.0-1</a>
</td>
<td> check</td>
<td></td>
</tr>
<tr>
<td> chipmunk</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/chipmunk_7.0.3-1/chipmunk.wrap">7.0.3-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/chipmunk_6.2.2-2/chipmunk.wrap">6.2.2-2</a>
</td>
<td> chipmunk</td>
<td></td>
</tr>
<tr>
<td> cjson</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cjson_1.7.18-1/cjson.wrap">1.7.18-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cjson_1.7.17-1/cjson.wrap">1.7.17-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cjson_1.7.16-2/cjson.wrap">1.7.16-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/cjson_1.7.15-6/cjson.wrap">1.7.15-6</a>, <a href="https://wrapdb.mesonbuild.com/v2/cjson_1.7.14-1/cjson.wrap">1.7.14-1</a>
</td>
<td> libcjson, libcjson_utils</td>
<td></td>
</tr>
<tr>
<td> cli11</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cli11_2.5.0-1/cli11.wrap">2.5.0-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cli11_2.4.2-1/cli11.wrap">2.4.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cli11_2.4.1-1/cli11.wrap">2.4.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cli11_2.3.2-1/cli11.wrap">2.3.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cli11_2.2.0-1/cli11.wrap">2.2.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cli11_2.1.2-1/cli11.wrap">2.1.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cli11_1.9.1-1/cli11.wrap">1.9.1-1</a>
</td>
<td> cli11</td>
<td></td>
</tr>
<tr>
<td> cmark-gfm</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cmark-gfm_0.29.0.gfm.13-1/cmark-gfm.wrap">0.29.0.gfm.13-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cmark-gfm_0.29.0.gfm.10-1/cmark-gfm.wrap">0.29.0.gfm.10-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cmark-gfm_0.29.0.gfm.6-1/cmark-gfm.wrap">0.29.0.gfm.6-1</a>
</td>
<td> libcmark-gfm</td>
<td></td>
</tr>
<tr>
<td> cmock</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cmock_2.6.0-1/cmock.wrap">2.6.0-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cmock_2.5.3-1/cmock.wrap">2.5.3-1</a>
</td>
<td> cmock</td>
<td></td>
</tr>
<tr>
<td> cmocka</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cmocka_1.1.7-3/cmocka.wrap">1.1.7-3</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cmocka_1.1.5-5/cmocka.wrap">1.1.5-5</a>, <a href="https://wrapdb.mesonbuild.com/v2/cmocka_1.1.2-1/cmocka.wrap">1.1.2-1</a>
</td>
<td> cmocka</td>
<td></td>
</tr>
<tr>
<td> concurrentqueue</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/concurrentqueue_1.0.4-1/concurrentqueue.wrap">1.0.4-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/concurrentqueue_1.0.3-1/concurrentqueue.wrap">1.0.3-1</a>
</td>
<td> concurrentqueue</td>
<td></td>
</tr>
<tr>
<td> cpp-httplib</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.20.0-1/cpp-httplib.wrap">0.20.0-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.19.0-1/cpp-httplib.wrap">0.19.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.18.7-1/cpp-httplib.wrap">0.18.7-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.18.6-1/cpp-httplib.wrap">0.18.6-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.18.5-1/cpp-httplib.wrap">0.18.5-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.18.3-1/cpp-httplib.wrap">0.18.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.18.2-1/cpp-httplib.wrap">0.18.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.18.1-1/cpp-httplib.wrap">0.18.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.18.0-1/cpp-httplib.wrap">0.18.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.17.3-1/cpp-httplib.wrap">0.17.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.17.1-1/cpp-httplib.wrap">0.17.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.16.3-1/cpp-httplib.wrap">0.16.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.15.3-1/cpp-httplib.wrap">0.15.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.13.1-1/cpp-httplib.wrap">0.13.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.11.2-1/cpp-httplib.wrap">0.11.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpp-httplib_0.8.9-2/cpp-httplib.wrap">0.8.9-2</a>
</td>
<td> cpp-httplib</td>
<td></td>
</tr>
<tr>
<td> cpp-semver</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cpp-semver_0.3.3-1/cpp-semver.wrap">0.3.3-1</a></strong></big><br>
</td>
<td> cpp-semver</td>
<td></td>
</tr>
<tr>
<td> cpputest</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cpputest_4.0-3/cpputest.wrap">4.0-3</a></strong></big><br>
</td>
<td> cpputest</td>
<td></td>
</tr>
<tr>
<td> cppzmq</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cppzmq_4.10.0-3/cppzmq.wrap">4.10.0-3</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cppzmq_4.9.0-1/cppzmq.wrap">4.9.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cppzmq_4.8.1-2/cppzmq.wrap">4.8.1-2</a>
</td>
<td> cppzmq</td>
<td></td>
</tr>
<tr>
<td> cpr</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cpr_1.11.2-1/cpr.wrap">1.11.2-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cpr_1.11.1-1/cpr.wrap">1.11.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpr_1.11.0-1/cpr.wrap">1.11.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpr_1.10.5-1/cpr.wrap">1.10.5-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpr_1.10.4-1/cpr.wrap">1.10.4-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpr_1.9.6-2/cpr.wrap">1.9.6-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpr_1.9.3-1/cpr.wrap">1.9.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpr_1.9.2-2/cpr.wrap">1.9.2-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpr_1.7.2-1/cpr.wrap">1.7.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpr_1.5.0-1/cpr.wrap">1.5.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cpr_1.3.0-1/cpr.wrap">1.3.0-1</a>
</td>
<td> cpr</td>
<td></td>
</tr>
<tr>
<td> croaring</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/croaring_1.3.0-1/croaring.wrap">1.3.0-1</a></strong></big><br>
</td>
<td> croaring</td>
<td></td>
</tr>
<tr>
<td> curl</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/curl_8.10.1-1/curl.wrap">8.10.1-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/curl_8.10.0-1/curl.wrap">8.10.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/curl_8.9.1-2/curl.wrap">8.9.1-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/curl_8.9.0-1/curl.wrap">8.9.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/curl_8.8.0-1/curl.wrap">8.8.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/curl_8.7.1-1/curl.wrap">8.7.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/curl_8.6.0-1/curl.wrap">8.6.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/curl_8.5.0-2/curl.wrap">8.5.0-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/curl_8.4.0-2/curl.wrap">8.4.0-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/curl_8.3.0-1/curl.wrap">8.3.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/curl_8.0.1-1/curl.wrap">8.0.1-1</a>
</td>
<td> libcurl</td>
<td></td>
</tr>
<tr>
<td> cwalk</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cwalk_1.2.9-1/cwalk.wrap">1.2.9-1</a></strong></big><br>
</td>
<td> cwalk</td>
<td></td>
</tr>
<tr>
<td> cxxopts</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/cxxopts_3.2.0-1/cxxopts.wrap">3.2.0-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/cxxopts_3.1.1-1/cxxopts.wrap">3.1.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cxxopts_3.0.0-1/cxxopts.wrap">3.0.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cxxopts_2.2.1-1/cxxopts.wrap">2.2.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/cxxopts_2.2.0-2/cxxopts.wrap">2.2.0-2</a>
</td>
<td> cxxopts</td>
<td></td>
</tr>
<tr>
<td> debug_assert</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/debug_assert_1.3.4-1/debug_assert.wrap">1.3.4-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/debug_assert_1.3.3-1/debug_assert.wrap">1.3.3-1</a>
</td>
<td> debug_assert</td>
<td></td>
</tr>
<tr>
<td> directxmath</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/directxmath_3.1.9-1/directxmath.wrap">3.1.9-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/directxmath_3.1.8-1/directxmath.wrap">3.1.8-1</a>
</td>
<td> directxmath</td>
<td></td>
</tr>
<tr>
<td> dlfcn-win32</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/dlfcn-win32_1.4.2-1/dlfcn-win32.wrap">1.4.2-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/dlfcn-win32_1.4.1-1/dlfcn-win32.wrap">1.4.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/dlfcn-win32_1.3.1-1/dlfcn-win32.wrap">1.3.1-1</a>
</td>
<td> dl</td>
<td></td>
</tr>
<tr>
<td> docopt</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/docopt_0.6.3-3/docopt.wrap">0.6.3-3</a></strong></big><br>
</td>
<td> docopt</td>
<td></td>
</tr>
<tr>
<td> doctest</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/doctest_2.4.11-1/doctest.wrap">2.4.11-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/doctest_2.4.9-1/doctest.wrap">2.4.9-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/doctest_2.4.8-1/doctest.wrap">2.4.8-1</a>
</td>
<td> doctest</td>
<td></td>
</tr>
<tr>
<td> dragonbox</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/dragonbox_1.1.2-1/dragonbox.wrap">1.1.2-1</a></strong></big><br>
</td>
<td> dragonbox</td>
<td></td>
</tr>
<tr>
<td> dyninst</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/dyninst_13.0.0-2/dyninst.wrap">13.0.0-2</a></strong></big><br>
</td>
<td> dyninst</td>
<td></td>
</tr>
<tr>
<td> eigen</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/eigen_3.4.0-2/eigen.wrap">3.4.0-2</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/eigen_3.3.9-1/eigen.wrap">3.3.9-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/eigen_3.3.8-1/eigen.wrap">3.3.8-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/eigen_3.3.7-3/eigen.wrap">3.3.7-3</a>, <a href="https://wrapdb.mesonbuild.com/v2/eigen_3.3.5-1/eigen.wrap">3.3.5-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/eigen_3.3.4-1/eigen.wrap">3.3.4-1</a>
</td>
<td> eigen3</td>
<td></td>
</tr>
<tr>
<td> emilk-loguru</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/emilk-loguru_2.1.0-10/emilk-loguru.wrap">2.1.0-10</a></strong></big><br>
</td>
<td> loguru</td>
<td></td>
</tr>
<tr>
<td> enet</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/enet_1.3.17-2/enet.wrap">1.3.17-2</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/enet_1.3.13-4/enet.wrap">1.3.13-4</a>
</td>
<td> enet</td>
<td></td>
</tr>
<tr>
<td> enlog</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/enlog_1.8-1/enlog.wrap">1.8-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/enlog_1.6-1/enlog.wrap">1.6-1</a>
</td>
<td> enlog</td>
<td></td>
</tr>
<tr>
<td> entt</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/entt_3.11.0-2/entt.wrap">3.11.0-2</a></strong></big><br>
</td>
<td> entt</td>
<td></td>
</tr>
<tr>
<td> epoxy</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/epoxy_1.5.10-2/epoxy.wrap">1.5.10-2</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/epoxy_1.5.9-1/epoxy.wrap">1.5.9-1</a>
</td>
<td> epoxy</td>
<td></td>
</tr>
<tr>
<td> exiv2</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/exiv2_0.28.5-1/exiv2.wrap">0.28.5-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/exiv2_0.28.4-1/exiv2.wrap">0.28.4-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/exiv2_0.28.3-1/exiv2.wrap">0.28.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/exiv2_0.28.1-1/exiv2.wrap">0.28.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/exiv2_0.28.0-1/exiv2.wrap">0.28.0-1</a>
</td>
<td> exiv2</td>
<td></td>
</tr>
<tr>
<td> expat</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/expat_2.7.1-1/expat.wrap">2.7.1-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/expat_2.6.4-1/expat.wrap">2.6.4-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/expat_2.6.3-2/expat.wrap">2.6.3-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/expat_2.6.2-1/expat.wrap">2.6.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/expat_2.6.0-1/expat.wrap">2.6.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/expat_2.5.0-4/expat.wrap">2.5.0-4</a>, <a href="https://wrapdb.mesonbuild.com/v2/expat_2.4.9-1/expat.wrap">2.4.9-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/expat_2.4.8-2/expat.wrap">2.4.8-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/expat_2.2.9-4/expat.wrap">2.2.9-4</a>, <a href="https://wrapdb.mesonbuild.com/v2/expat_2.2.6-1/expat.wrap">2.2.6-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/expat_2.2.5-5/expat.wrap">2.2.5-5</a>
</td>
<td> expat</td>
<td></td>
</tr>
<tr>
<td> facil</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/facil_0.7.6-4/facil.wrap">0.7.6-4</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/facil_0.7.5-1/facil.wrap">0.7.5-1</a>
</td>
<td> facil</td>
<td></td>
</tr>
<tr>
<td> fdk-aac</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/fdk-aac_2.0.3-1/fdk-aac.wrap">2.0.3-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/fdk-aac_2.0.2-0/fdk-aac.wrap">2.0.2-0</a>
</td>
<td> fdk-aac</td>
<td></td>
</tr>
<tr>
<td> ff-nvcodec-headers</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/ff-nvcodec-headers_11.1.5.1-0/ff-nvcodec-headers.wrap">11.1.5.1-0</a></strong></big><br>
</td>
<td> ffnvcodec</td>
<td></td>
</tr>
<tr>
<td> flac</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/flac_1.5.0-1/flac.wrap">1.5.0-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/flac_1.4.3-2/flac.wrap">1.4.3-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/flac_1.4.2-2/flac.wrap">1.4.2-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/flac_1.4.1-1/flac.wrap">1.4.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/flac_1.4.0-2/flac.wrap">1.4.0-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/flac_1.3.4-4/flac.wrap">1.3.4-4</a>, <a href="https://wrapdb.mesonbuild.com/v2/flac_1.3.3-2/flac.wrap">1.3.3-2</a>
</td>
<td> flac</td>
<td></td>
</tr>
<tr>
<td> flatbuffers</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/flatbuffers_24.3.25-1/flatbuffers.wrap">24.3.25-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/flatbuffers_24.3.6-1/flatbuffers.wrap">24.3.6-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/flatbuffers_23.3.3-1/flatbuffers.wrap">23.3.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/flatbuffers_23.1.21-1/flatbuffers.wrap">23.1.21-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/flatbuffers_22.11.23-1/flatbuffers.wrap">22.11.23-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/flatbuffers_2.0.8-1/flatbuffers.wrap">2.0.8-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/flatbuffers_2.0.6-2/flatbuffers.wrap">2.0.6-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/flatbuffers_1.11.0-1/flatbuffers.wrap">1.11.0-1</a>
</td>
<td> flatbuffers</td>
<td> flatc, flathash</td>
</tr>
<tr>
<td> fluidsynth</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/fluidsynth_2.3.3-2/fluidsynth.wrap">2.3.3-2</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/fluidsynth_2.3.2-1/fluidsynth.wrap">2.3.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fluidsynth_2.3.0-1/fluidsynth.wrap">2.3.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fluidsynth_2.2.8-1/fluidsynth.wrap">2.2.8-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fluidsynth_2.2.6-1/fluidsynth.wrap">2.2.6-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fluidsynth_2.2.4-3/fluidsynth.wrap">2.2.4-3</a>, <a href="https://wrapdb.mesonbuild.com/v2/fluidsynth_2.2.3-2/fluidsynth.wrap">2.2.3-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/fluidsynth_2.2.0-1/fluidsynth.wrap">2.2.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fluidsynth_2.1.8-1/fluidsynth.wrap">2.1.8-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fluidsynth_2.1.7-1/fluidsynth.wrap">2.1.7-1</a>
</td>
<td> fluidsynth</td>
<td></td>
</tr>
<tr>
<td> fmt</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/fmt_11.1.4-1/fmt.wrap">11.1.4-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/fmt_11.1.1-2/fmt.wrap">11.1.1-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_11.0.2-1/fmt.wrap">11.0.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_11.0.1-1/fmt.wrap">11.0.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_10.2.0-2/fmt.wrap">10.2.0-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_10.1.1-1/fmt.wrap">10.1.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_9.1.0-2/fmt.wrap">9.1.0-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_9.0.0-1/fmt.wrap">9.0.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_8.1.1-2/fmt.wrap">8.1.1-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_8.0.1-1/fmt.wrap">8.0.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_7.1.3-1/fmt.wrap">7.1.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_7.0.1-1/fmt.wrap">7.0.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_6.2.0-2/fmt.wrap">6.2.0-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_6.0.0-1/fmt.wrap">6.0.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_5.3.0-1/fmt.wrap">5.3.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_5.2.1-1/fmt.wrap">5.2.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_5.2.0-1/fmt.wrap">5.2.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fmt_4.1.0-1/fmt.wrap">4.1.0-1</a>
</td>
<td> fmt</td>
<td></td>
</tr>
<tr>
<td> fontconfig</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/fontconfig_2.16.2-1/fontconfig.wrap">2.16.2-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/fontconfig_2.16.1-1/fontconfig.wrap">2.16.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fontconfig_2.16.0-1/fontconfig.wrap">2.16.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fontconfig_2.15.0-1/fontconfig.wrap">2.15.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fontconfig_2.14.2-1/fontconfig.wrap">2.14.2-1</a>
</td>
<td> fontconfig</td>
<td></td>
</tr>
<tr>
<td> freeglut</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/freeglut_3.4.0-3/freeglut.wrap">3.4.0-3</a></strong></big><br>
</td>
<td> freeglut, glut</td>
<td></td>
</tr>
<tr>
<td> freetype2</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/freetype2_2.13.3-1/freetype2.wrap">2.13.3-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/freetype2_2.13.2-1/freetype2.wrap">2.13.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/freetype2_2.13.1-1/freetype2.wrap">2.13.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/freetype2_2.13.0-1/freetype2.wrap">2.13.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/freetype2_2.12.1-2/freetype2.wrap">2.12.1-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/freetype2_2.12.0-1/freetype2.wrap">2.12.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/freetype2_2.11.1-1/freetype2.wrap">2.11.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/freetype2_2.11.0-1/freetype2.wrap">2.11.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/freetype2_2.9.1-2/freetype2.wrap">2.9.1-2</a>
</td>
<td> freetype2, freetype</td>
<td></td>
</tr>
<tr>
<td> fribidi</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/fribidi_1.0.16-1/fribidi.wrap">1.0.16-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/fribidi_1.0.15-1/fribidi.wrap">1.0.15-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/fribidi_1.0.13-1/fribidi.wrap">1.0.13-1</a>
</td>
<td> fribidi</td>
<td></td>
</tr>
<tr>
<td> frozen</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/frozen_1.1.1-1/frozen.wrap">1.1.1-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/frozen_1.0.1-2/frozen.wrap">1.0.1-2</a>
</td>
<td> frozen</td>
<td></td>
</tr>
<tr>
<td> ftxui</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/ftxui_5.0.0-1/ftxui.wrap">5.0.0-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/ftxui_4.0.0-1/ftxui.wrap">4.0.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/ftxui_3.0.0-2/ftxui.wrap">3.0.0-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/ftxui_2.0.0-3/ftxui.wrap">2.0.0-3</a>
</td>
<td> ftxui-screen, ftxui-dom, ftxui-component</td>
<td></td>
</tr>
<tr>
<td> fuse</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/fuse_2.9.9-3/fuse.wrap">2.9.9-3</a></strong></big><br>
</td>
<td> fuse</td>
<td></td>
</tr>
<tr>
<td> gdbm</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/gdbm_1.24-1/gdbm.wrap">1.24-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/gdbm_1.23-2/gdbm.wrap">1.23-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/gdbm_1.14.1-2/gdbm.wrap">1.14.1-2</a>
</td>
<td> gdbm</td>
<td></td>
</tr>
<tr>
<td> gdk-pixbuf</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/gdk-pixbuf_2.42.12-1/gdk-pixbuf.wrap">2.42.12-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/gdk-pixbuf_2.42.10-1/gdk-pixbuf.wrap">2.42.10-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/gdk-pixbuf_2.42.9-1/gdk-pixbuf.wrap">2.42.9-1</a>
</td>
<td> gdk-pixbuf-2.0</td>
<td></td>
</tr>
<tr>
<td> gee</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/gee_0.20.6-1/gee.wrap">0.20.6-1</a></strong></big><br>
</td>
<td> gee-0.8</td>
<td></td>
</tr>
<tr>
<td> giflib</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/giflib_5.2.2-2/giflib.wrap">5.2.2-2</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/giflib_5.2.1-3/giflib.wrap">5.2.1-3</a>
</td>
<td> giflib</td>
<td></td>
</tr>
<tr>
<td> glbinding</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/glbinding_3.3.0-1/glbinding.wrap">3.3.0-1</a></strong></big><br>
</td>
<td> glbinding, glbinding-aux</td>
<td></td>
</tr>
<tr>
<td> glew</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/glew_2.2.0-2/glew.wrap">2.2.0-2</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/glew_2.1.0-4/glew.wrap">2.1.0-4</a>
</td>
<td> glew</td>
<td></td>
</tr>
<tr>
<td> glfw</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/glfw_3.4-1/glfw.wrap">3.4-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/glfw_3.3.10-1/glfw.wrap">3.3.10-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glfw_3.3.9-1/glfw.wrap">3.3.9-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glfw_3.3.8-3/glfw.wrap">3.3.8-3</a>, <a href="https://wrapdb.mesonbuild.com/v2/glfw_3.3.7-1/glfw.wrap">3.3.7-1</a>
</td>
<td> glfw3</td>
<td></td>
</tr>
<tr>
<td> glib</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/glib_2.84.1-1/glib.wrap">2.84.1-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/glib_2.84.0-1/glib.wrap">2.84.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.82.5-1/glib.wrap">2.82.5-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.82.4-1/glib.wrap">2.82.4-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.82.2-1/glib.wrap">2.82.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.82.1-1/glib.wrap">2.82.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.82.0-1/glib.wrap">2.82.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.80.5-1/glib.wrap">2.80.5-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.80.4-1/glib.wrap">2.80.4-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.80.3-1/glib.wrap">2.80.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.80.2-1/glib.wrap">2.80.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.80.0-1/glib.wrap">2.80.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.78.4-1/glib.wrap">2.78.4-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.78.3-1/glib.wrap">2.78.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.78.2-1/glib.wrap">2.78.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.78.1-1/glib.wrap">2.78.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.78.0-1/glib.wrap">2.78.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.76.5-1/glib.wrap">2.76.5-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.76.4-1/glib.wrap">2.76.4-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.76.3-1/glib.wrap">2.76.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.76.1-1/glib.wrap">2.76.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.74.4-1/glib.wrap">2.74.4-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.74.1-1/glib.wrap">2.74.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.74.0-2/glib.wrap">2.74.0-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.72.2-1/glib.wrap">2.72.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.72.1-1/glib.wrap">2.72.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.70.4-1/glib.wrap">2.70.4-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.70.2-1/glib.wrap">2.70.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.70.1-1/glib.wrap">2.70.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.70.0-1/glib.wrap">2.70.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.68.1-1/glib.wrap">2.68.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib_2.66.7-1/glib.wrap">2.66.7-1</a>
</td>
<td> gthread-2.0, gobject-2.0, gmodule-no-export-2.0, gmodule-export-2.0, gmodule-2.0, glib-2.0, gio-2.0, gio-windows-2.0, gio-unix-2.0</td>
<td> glib-genmarshal, glib-mkenums, glib-compile-schemas, glib-compile-resources, gio-querymodules, gdbus-codegen</td>
</tr>
<tr>
<td> glib-networking</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/glib-networking_2.80.1-1/glib-networking.wrap">2.80.1-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/glib-networking_2.80.0-1/glib-networking.wrap">2.80.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glib-networking_2.78.0-1/glib-networking.wrap">2.78.0-1</a>
</td>
<td></td>
<td></td>
</tr>
<tr>
<td> glm</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/glm_1.0.1-1/glm.wrap">1.0.1-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/glm_1.0.0-1/glm.wrap">1.0.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/glm_0.9.9.8-2/glm.wrap">0.9.9.8-2</a>
</td>
<td> glm</td>
<td></td>
</tr>
<tr>
<td> glpk</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/glpk_5.0-1/glpk.wrap">5.0-1</a></strong></big><br>
</td>
<td> glpk</td>
<td></td>
</tr>
<tr>
<td> godot-cpp</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/godot-cpp_4.3-1/godot-cpp.wrap">4.3-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/godot-cpp_4.2-1/godot-cpp.wrap">4.2-1</a>
</td>
<td> godot_cpp</td>
<td></td>
</tr>
<tr>
<td> google-benchmark</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/google-benchmark_1.8.4-1/google-benchmark.wrap">1.8.4-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/google-benchmark_1.8.3-1/google-benchmark.wrap">1.8.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/google-benchmark_1.7.1-2/google-benchmark.wrap">1.7.1-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/google-benchmark_1.7.0-1/google-benchmark.wrap">1.7.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/google-benchmark_1.6.0-1/google-benchmark.wrap">1.6.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/google-benchmark_1.5.2-1/google-benchmark.wrap">1.5.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/google-benchmark_1.4.1-1/google-benchmark.wrap">1.4.1-1</a>
</td>
<td> benchmark, benchmark-main</td>
<td></td>
</tr>
<tr>
<td> google-brotli</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/google-brotli_1.1.0-1/google-brotli.wrap">1.1.0-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/google-brotli_1.0.9-2/google-brotli.wrap">1.0.9-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/google-brotli_1.0.7-1/google-brotli.wrap">1.0.7-1</a>
</td>
<td> libbrotlicommon, libbrotlienc, libbrotlidec</td>
<td></td>
</tr>
<tr>
<td> google-snappy</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/google-snappy_1.1.9-1/google-snappy.wrap">1.1.9-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/google-snappy_1.1.7-2/google-snappy.wrap">1.1.7-2</a>
</td>
<td> snappy</td>
<td></td>
</tr>
<tr>
<td> google-woff2</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/google-woff2_1.0.2-2/google-woff2.wrap">1.0.2-2</a></strong></big><br>
</td>
<td> libwoff2common, libwoff2dec, libwoff2enc</td>
<td> woff2_decompress, woff2_compress, woff2_info</td>
</tr>
<tr>
<td> graphite2</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/graphite2_1.3.14-1/graphite2.wrap">1.3.14-1</a></strong></big><br>
</td>
<td> graphite2</td>
<td></td>
</tr>
<tr>
<td> grpc</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/grpc_1.59.1-1/grpc.wrap">1.59.1-1</a></strong></big><br>
</td>
<td> grpc, grpc_unsecure, grpc++, grpc++_unsecure</td>
<td> grpc_cpp_plugin, grpc_node_plugin, grpc_php_plugin, grpc_python_plugin, grpc_ruby_plugin</td>
</tr>
<tr>
<td> gtest</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/gtest_1.15.2-4/gtest.wrap">1.15.2-4</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/gtest_1.15.0-1/gtest.wrap">1.15.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/gtest_1.14.0-2/gtest.wrap">1.14.0-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/gtest_1.13.0-1/gtest.wrap">1.13.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/gtest_1.12.1-1/gtest.wrap">1.12.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/gtest_1.11.0-2/gtest.wrap">1.11.0-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/gtest_1.10.0-1/gtest.wrap">1.10.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/gtest_1.8.1-1/gtest.wrap">1.8.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/gtest_1.8.0-5/gtest.wrap">1.8.0-5</a>, <a href="https://wrapdb.mesonbuild.com/v2/gtest_1.7.0-5/gtest.wrap">1.7.0-5</a>
</td>
<td> gtest, gtest_main, gmock, gmock_main</td>
<td></td>
</tr>
<tr>
<td> gumbo-parser</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/gumbo-parser_0.12.1-2/gumbo-parser.wrap">0.12.1-2</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/gumbo-parser_0.10.1-1/gumbo-parser.wrap">0.10.1-1</a>
</td>
<td> gumbo</td>
<td></td>
</tr>
<tr>
<td> harfbuzz</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_11.1.0-1/harfbuzz.wrap">11.1.0-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_11.0.1-1/harfbuzz.wrap">11.0.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_11.0.0-1/harfbuzz.wrap">11.0.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_10.4.0-1/harfbuzz.wrap">10.4.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_10.3.0-1/harfbuzz.wrap">10.3.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_10.2.0-1/harfbuzz.wrap">10.2.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_10.1.0-1/harfbuzz.wrap">10.1.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_10.0.1-1/harfbuzz.wrap">10.0.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_9.0.0-1/harfbuzz.wrap">9.0.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_8.3.1-1/harfbuzz.wrap">8.3.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_8.3.0-1/harfbuzz.wrap">8.3.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_8.2.2-1/harfbuzz.wrap">8.2.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_8.2.1-1/harfbuzz.wrap">8.2.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_8.2.0-1/harfbuzz.wrap">8.2.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_8.1.1-1/harfbuzz.wrap">8.1.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_5.2.0-1/harfbuzz.wrap">5.2.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/harfbuzz_4.4.1-1/harfbuzz.wrap">4.4.1-1</a>
</td>
<td> harfbuzz, harfbuzz-cairo, harfbuzz-gobject, harfbuzz-icu, harfbuzz-subset</td>
<td></td>
</tr>
<tr>
<td> hedley</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/hedley_15-1/hedley.wrap">15-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/hedley_11-1/hedley.wrap">11-1</a>
</td>
<td> hedley</td>
<td></td>
</tr>
<tr>
<td> hinnant-date</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/hinnant-date_3.0.1-2/hinnant-date.wrap">3.0.1-2</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/hinnant-date_3.0.0-1/hinnant-date.wrap">3.0.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/hinnant-date_2.4.1-1/hinnant-date.wrap">2.4.1-1</a>
</td>
<td> date, tz</td>
<td></td>
</tr>
<tr>
<td> htslib</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/htslib_1.21-1/htslib.wrap">1.21-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/htslib_1.20-1/htslib.wrap">1.20-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/htslib_1.17-2/htslib.wrap">1.17-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/htslib_1.16-3/htslib.wrap">1.16-3</a>, <a href="https://wrapdb.mesonbuild.com/v2/htslib_1.15-1/htslib.wrap">1.15-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/htslib_1.14-1/htslib.wrap">1.14-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/htslib_1.11-1/htslib.wrap">1.11-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/htslib_1.10.2-1/htslib.wrap">1.10.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/htslib_1.9-1/htslib.wrap">1.9-1</a>
</td>
<td> htslib</td>
<td></td>
</tr>
<tr>
<td> icu</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/icu_77.1-1/icu.wrap">77.1-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/icu_76.1-2/icu.wrap">76.1-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/icu_73.2-2/icu.wrap">73.2-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/icu_73.1-1/icu.wrap">73.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/icu_72.1-5/icu.wrap">72.1-5</a>, <a href="https://wrapdb.mesonbuild.com/v2/icu_71.1-1/icu.wrap">71.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/icu_70.1-2/icu.wrap">70.1-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/icu_67.1-4/icu.wrap">67.1-4</a>, <a href="https://wrapdb.mesonbuild.com/v2/icu_55.2-1/icu.wrap">55.2-1</a>
</td>
<td> icu-uc, icu-io, icu-i18n</td>
<td> genbrk, genccode, gencmn</td>
</tr>
<tr>
<td> iir</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/iir_1.9.3-1/iir.wrap">1.9.3-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/iir_1.9.2-2/iir.wrap">1.9.2-2</a>
</td>
<td> iir</td>
<td></td>
</tr>
<tr>
<td> imgui</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/imgui_1.91.6-2/imgui.wrap">1.91.6-2</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/imgui_1.91.3-1/imgui.wrap">1.91.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.91.0-1/imgui.wrap">1.91.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.89.9-2/imgui.wrap">1.89.9-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.89.3-1/imgui.wrap">1.89.3-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.89.2-1/imgui.wrap">1.89.2-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.88-2/imgui.wrap">1.88-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.87-5/imgui.wrap">1.87-5</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.86-1/imgui.wrap">1.86-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.85-1/imgui.wrap">1.85-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.81-1/imgui.wrap">1.81-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.80-1/imgui.wrap">1.80-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.79-2/imgui.wrap">1.79-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.78-2/imgui.wrap">1.78-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui_1.76-2/imgui.wrap">1.76-2</a>
</td>
<td> imgui</td>
<td></td>
</tr>
<tr>
<td> imgui-docking</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/imgui-docking_1.91.6-1/imgui-docking.wrap">1.91.6-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/imgui-docking_1.91.0-1/imgui-docking.wrap">1.91.0-1</a>
</td>
<td> imgui_docking</td>
<td></td>
</tr>
<tr>
<td> imgui-sfml</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/imgui-sfml_2.6-1/imgui-sfml.wrap">2.6-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/imgui-sfml_2.5-4/imgui-sfml.wrap">2.5-4</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui-sfml_2.3-2/imgui-sfml.wrap">2.3-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/imgui-sfml_2.1-1/imgui-sfml.wrap">2.1-1</a>
</td>
<td> imgui-sfml</td>
<td></td>
</tr>
<tr>
<td> imguizmo</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/imguizmo_1.83-1/imguizmo.wrap">1.83-1</a></strong></big><br>
</td>
<td> imguizmo</td>
<td></td>
</tr>
<tr>
<td> implot</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/implot_0.16-1/implot.wrap">0.16-1</a></strong></big><br>
</td>
<td> implot</td>
<td></td>
</tr>
<tr>
<td> indicators</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/indicators_2.3-1/indicators.wrap">2.3-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/indicators_2.2-2/indicators.wrap">2.2-2</a>
</td>
<td> indicators</td>
<td></td>
</tr>
<tr>
<td> inih</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/inih_r59-1/inih.wrap">r59-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/inih_r58-1/inih.wrap">r58-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/inih_r57-1/inih.wrap">r57-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/inih_r56-1/inih.wrap">r56-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/inih_r54-1/inih.wrap">r54-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/inih_r53-1/inih.wrap">r53-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/inih_r52-1/inih.wrap">r52-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/inih_r51-1/inih.wrap">r51-1</a>
</td>
<td> inih, inireader</td>
<td></td>
</tr>
<tr>
<td> irepeat</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/irepeat_0.6-1/irepeat.wrap">0.6-1</a></strong></big><br>
</td>
<td> irepeat</td>
<td></td>
</tr>
<tr>
<td> jansson</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/jansson_2.14-3/jansson.wrap">2.14-3</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/jansson_2.13-1/jansson.wrap">2.13-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/jansson_2.11-3/jansson.wrap">2.11-3</a>
</td>
<td> jansson</td>
<td></td>
</tr>
<tr>
<td> jbig2dec</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/jbig2dec_0.20-1/jbig2dec.wrap">0.20-1</a></strong></big><br>
</td>
<td> jbig2dec</td>
<td></td>
</tr>
<tr>
<td> jbigkit</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/jbigkit_2.1-2/jbigkit.wrap">2.1-2</a></strong></big><br>
</td>
<td> libjbig, libjbig85</td>
<td> jbgtopbm, pbmtojbg, jbgtopbm85, pbmtojbg85</td>
</tr>
<tr>
<td> json</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/json_3.2.0-1/json.wrap">3.2.0-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/json_2.1.1-1/json.wrap">2.1.1-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/json_2.0.5-1/json.wrap">2.0.5-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/json_2.0.3-1/json.wrap">2.0.3-1</a>
</td>
<td></td>
<td></td>
</tr>
<tr>
<td> json-c</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/json-c_0.18-1/json-c.wrap">0.18-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/json-c_0.17-2/json-c.wrap">0.17-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/json-c_0.16-4/json-c.wrap">0.16-4</a>, <a href="https://wrapdb.mesonbuild.com/v2/json-c_0.15-2/json-c.wrap">0.15-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/json-c_0.13.1-1/json-c.wrap">0.13.1-1</a>
</td>
<td> json-c</td>
<td></td>
</tr>
<tr>
<td> json-glib</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/json-glib_1.10.6-1/json-glib.wrap">1.10.6-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/json-glib_1.10.0-1/json-glib.wrap">1.10.0-1</a>, <a href="https://wrapdb.mesonbuild.com/v2/json-glib_1.6.6-2/json-glib.wrap">1.6.6-2</a>
</td>
<td> json-glib-1.0</td>
<td></td>
</tr>
<tr>
<td> jsoncpp</td>
<td> <big><strong><a href="https://wrapdb.mesonbuild.com/v2/jsoncpp_1.9.6-1/jsoncpp.wrap">1.9.6-1</a></strong></big><br><a href="https://wrapdb.mesonbuild.com/v2/jsoncpp_1.9.5-2/jsoncpp.wrap">1.9.5-2</a>, <a href="https://wrapdb.mesonbuild.com/v2/jsoncpp_1.8.4-1/jsoncpp.wrap">1.8.4-1</a>