-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsitemap.txt
2485 lines (2485 loc) · 119 KB
/
sitemap.txt
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
http://vcpkgx.com/index.html
http://vcpkgx.com/details.html?package=gflags
http://vcpkgx.com/details.html?package=wren
http://vcpkgx.com/details.html?package=glm
http://vcpkgx.com/details.html?package=gz-plugin2
http://vcpkgx.com/details.html?package=lensfun
http://vcpkgx.com/details.html?package=shader-slang
http://vcpkgx.com/details.html?package=boost-icl
http://vcpkgx.com/details.html?package=xeus
http://vcpkgx.com/details.html?package=nghttp3
http://vcpkgx.com/details.html?package=nghttp2
http://vcpkgx.com/details.html?package=dbow2
http://vcpkgx.com/details.html?package=parallelstl
http://vcpkgx.com/details.html?package=pdal
http://vcpkgx.com/details.html?package=scottt-debugbreak
http://vcpkgx.com/details.html?package=tre
http://vcpkgx.com/details.html?package=pciids
http://vcpkgx.com/details.html?package=xcb-util
http://vcpkgx.com/details.html?package=libdivide
http://vcpkgx.com/details.html?package=numactl
http://vcpkgx.com/details.html?package=asiochan
http://vcpkgx.com/details.html?package=civetweb
http://vcpkgx.com/details.html?package=kfr
http://vcpkgx.com/details.html?package=skia
http://vcpkgx.com/details.html?package=dbghelp
http://vcpkgx.com/details.html?package=pffft
http://vcpkgx.com/details.html?package=blend2d
http://vcpkgx.com/details.html?package=openigtlink
http://vcpkgx.com/details.html?package=libyaml
http://vcpkgx.com/details.html?package=qtquicktimeline
http://vcpkgx.com/details.html?package=boost-spirit
http://vcpkgx.com/details.html?package=boost-iterator
http://vcpkgx.com/details.html?package=gpgmm
http://vcpkgx.com/details.html?package=qt5-x11extras
http://vcpkgx.com/details.html?package=fmt
http://vcpkgx.com/details.html?package=libprotobuf-mutator
http://vcpkgx.com/details.html?package=meshoptimizer
http://vcpkgx.com/details.html?package=libevent
http://vcpkgx.com/details.html?package=portable-file-dialogs
http://vcpkgx.com/details.html?package=rhasheq
http://vcpkgx.com/details.html?package=openni2
http://vcpkgx.com/details.html?package=libwebm
http://vcpkgx.com/details.html?package=qt5-quickcontrols2
http://vcpkgx.com/details.html?package=ctbench
http://vcpkgx.com/details.html?package=libass
http://vcpkgx.com/details.html?package=catch2
http://vcpkgx.com/details.html?package=kf5textwidgets
http://vcpkgx.com/details.html?package=readline-unix
http://vcpkgx.com/details.html?package=gz-transport12
http://vcpkgx.com/details.html?package=aurora
http://vcpkgx.com/details.html?package=lcms
http://vcpkgx.com/details.html?package=lionkor-commandline
http://vcpkgx.com/details.html?package=simdjson
http://vcpkgx.com/details.html?package=libobfuscate
http://vcpkgx.com/details.html?package=wincrypt
http://vcpkgx.com/details.html?package=hiredis
http://vcpkgx.com/details.html?package=boost-dynamic-bitset
http://vcpkgx.com/details.html?package=kissfft
http://vcpkgx.com/details.html?package=osgearth
http://vcpkgx.com/details.html?package=cpptrace
http://vcpkgx.com/details.html?package=cmocka
http://vcpkgx.com/details.html?package=egl
http://vcpkgx.com/details.html?package=tcb-span
http://vcpkgx.com/details.html?package=libgpg-error
http://vcpkgx.com/details.html?package=sse2neon
http://vcpkgx.com/details.html?package=nayuki-qr-code-generator
http://vcpkgx.com/details.html?package=imgui-sfml
http://vcpkgx.com/details.html?package=plib
http://vcpkgx.com/details.html?package=cello
http://vcpkgx.com/details.html?package=cxxgraph
http://vcpkgx.com/details.html?package=thomasmonkman-filewatch
http://vcpkgx.com/details.html?package=boost-yap
http://vcpkgx.com/details.html?package=libsrt
http://vcpkgx.com/details.html?package=leveldb
http://vcpkgx.com/details.html?package=jbig2dec
http://vcpkgx.com/details.html?package=libxcrypt
http://vcpkgx.com/details.html?package=gainput
http://vcpkgx.com/details.html?package=nvtt
http://vcpkgx.com/details.html?package=exprtk
http://vcpkgx.com/details.html?package=graphicsmagick
http://vcpkgx.com/details.html?package=dp-thread-pool
http://vcpkgx.com/details.html?package=cute-headers
http://vcpkgx.com/details.html?package=libxcomposite
http://vcpkgx.com/details.html?package=cppkafka
http://vcpkgx.com/details.html?package=uriparser
http://vcpkgx.com/details.html?package=log4cxx
http://vcpkgx.com/details.html?package=rang
http://vcpkgx.com/details.html?package=iceoryx
http://vcpkgx.com/details.html?package=cuda
http://vcpkgx.com/details.html?package=chartdir
http://vcpkgx.com/details.html?package=rabit
http://vcpkgx.com/details.html?package=any-lite
http://vcpkgx.com/details.html?package=oatpp-consul
http://vcpkgx.com/details.html?package=qtquickcontrols2
http://vcpkgx.com/details.html?package=popsift
http://vcpkgx.com/details.html?package=fastcgi
http://vcpkgx.com/details.html?package=fawdlstty-libfv
http://vcpkgx.com/details.html?package=apsi
http://vcpkgx.com/details.html?package=libspnav
http://vcpkgx.com/details.html?package=kubazip
http://vcpkgx.com/details.html?package=libsystemd
http://vcpkgx.com/details.html?package=stx
http://vcpkgx.com/details.html?package=half
http://vcpkgx.com/details.html?package=microsoft-signalr
http://vcpkgx.com/details.html?package=libfreenect2
http://vcpkgx.com/details.html?package=wpilib
http://vcpkgx.com/details.html?package=gperftools
http://vcpkgx.com/details.html?package=libudis86
http://vcpkgx.com/details.html?package=openvr
http://vcpkgx.com/details.html?package=dataframe
http://vcpkgx.com/details.html?package=boost-concept-check
http://vcpkgx.com/details.html?package=xorg-macros
http://vcpkgx.com/details.html?package=mysql-connector-cpp
http://vcpkgx.com/details.html?package=gcem
http://vcpkgx.com/details.html?package=apr
http://vcpkgx.com/details.html?package=pegtl
http://vcpkgx.com/details.html?package=python3
http://vcpkgx.com/details.html?package=alsa
http://vcpkgx.com/details.html?package=qt5-charts
http://vcpkgx.com/details.html?package=libxaw
http://vcpkgx.com/details.html?package=snowhouse
http://vcpkgx.com/details.html?package=boost-uninstall
http://vcpkgx.com/details.html?package=boost-bind
http://vcpkgx.com/details.html?package=qhttpengine
http://vcpkgx.com/details.html?package=boost-config
http://vcpkgx.com/details.html?package=nanobench
http://vcpkgx.com/details.html?package=kaitai-struct-cpp-stl-runtime
http://vcpkgx.com/details.html?package=jwt-cpp
http://vcpkgx.com/details.html?package=pugixml
http://vcpkgx.com/details.html?package=h3
http://vcpkgx.com/details.html?package=cgicc
http://vcpkgx.com/details.html?package=libmesh
http://vcpkgx.com/details.html?package=mfl
http://vcpkgx.com/details.html?package=libcoro
http://vcpkgx.com/details.html?package=libconfig
http://vcpkgx.com/details.html?package=glib
http://vcpkgx.com/details.html?package=libusbmuxd
http://vcpkgx.com/details.html?package=libstemmer
http://vcpkgx.com/details.html?package=boost-unordered
http://vcpkgx.com/details.html?package=boost-bimap
http://vcpkgx.com/details.html?package=hdf5
http://vcpkgx.com/details.html?package=zyre
http://vcpkgx.com/details.html?package=libidn2
http://vcpkgx.com/details.html?package=spdlog
http://vcpkgx.com/details.html?package=fruit
http://vcpkgx.com/details.html?package=wxcharts
http://vcpkgx.com/details.html?package=open62541pp
http://vcpkgx.com/details.html?package=boost-date-time
http://vcpkgx.com/details.html?package=libxinerama
http://vcpkgx.com/details.html?package=vulkan-tools
http://vcpkgx.com/details.html?package=apriltag
http://vcpkgx.com/details.html?package=libmysql
http://vcpkgx.com/details.html?package=vsg
http://vcpkgx.com/details.html?package=boost-stl-interfaces
http://vcpkgx.com/details.html?package=libp7client
http://vcpkgx.com/details.html?package=sqlitecpp
http://vcpkgx.com/details.html?package=functions-framework-cpp
http://vcpkgx.com/details.html?package=geotrans
http://vcpkgx.com/details.html?package=geographiclib
http://vcpkgx.com/details.html?package=azure-data-tables-cpp
http://vcpkgx.com/details.html?package=s2geometry
http://vcpkgx.com/details.html?package=cld3
http://vcpkgx.com/details.html?package=sentry-native
http://vcpkgx.com/details.html?package=azure-kinect-sensor-sdk
http://vcpkgx.com/details.html?package=qtlottie
http://vcpkgx.com/details.html?package=libmad
http://vcpkgx.com/details.html?package=corrade
http://vcpkgx.com/details.html?package=libdisasm
http://vcpkgx.com/details.html?package=libdvdcss
http://vcpkgx.com/details.html?package=jhasse-poly2tri
http://vcpkgx.com/details.html?package=xapian
http://vcpkgx.com/details.html?package=bluescarni-tanuki
http://vcpkgx.com/details.html?package=pravila00-enumflag
http://vcpkgx.com/details.html?package=zeromq
http://vcpkgx.com/details.html?package=d3d12-memory-allocator
http://vcpkgx.com/details.html?package=qtopcua
http://vcpkgx.com/details.html?package=ncurses
http://vcpkgx.com/details.html?package=rtaudio
http://vcpkgx.com/details.html?package=im3d
http://vcpkgx.com/details.html?package=cppad
http://vcpkgx.com/details.html?package=shogun
http://vcpkgx.com/details.html?package=freealut
http://vcpkgx.com/details.html?package=simage
http://vcpkgx.com/details.html?package=boost-optional
http://vcpkgx.com/details.html?package=openmvg
http://vcpkgx.com/details.html?package=unordered-dense
http://vcpkgx.com/details.html?package=wil
http://vcpkgx.com/details.html?package=ezc3d
http://vcpkgx.com/details.html?package=libdatrie
http://vcpkgx.com/details.html?package=qwt
http://vcpkgx.com/details.html?package=boost-mpi
http://vcpkgx.com/details.html?package=lapack-reference
http://vcpkgx.com/details.html?package=globjects
http://vcpkgx.com/details.html?package=constexpr-contracts
http://vcpkgx.com/details.html?package=materialx
http://vcpkgx.com/details.html?package=better-enums
http://vcpkgx.com/details.html?package=opencc
http://vcpkgx.com/details.html?package=indirect-value
http://vcpkgx.com/details.html?package=oniguruma
http://vcpkgx.com/details.html?package=libpmemobj-cpp
http://vcpkgx.com/details.html?package=netcpp
http://vcpkgx.com/details.html?package=boost-integer
http://vcpkgx.com/details.html?package=plf-stack
http://vcpkgx.com/details.html?package=dbow3
http://vcpkgx.com/details.html?package=boost-hana
http://vcpkgx.com/details.html?package=hps
http://vcpkgx.com/details.html?package=enkits
http://vcpkgx.com/details.html?package=protobuf
http://vcpkgx.com/details.html?package=thorvg
http://vcpkgx.com/details.html?package=qt5-xmlpatterns
http://vcpkgx.com/details.html?package=dingo
http://vcpkgx.com/details.html?package=oatpp-postgresql
http://vcpkgx.com/details.html?package=vowpal-wabbit
http://vcpkgx.com/details.html?package=google-cloud-cpp-common
http://vcpkgx.com/details.html?package=amqpcpp
http://vcpkgx.com/details.html?package=unrar
http://vcpkgx.com/details.html?package=qt5-3d
http://vcpkgx.com/details.html?package=mdl-sdk
http://vcpkgx.com/details.html?package=qoixx
http://vcpkgx.com/details.html?package=librsvg
http://vcpkgx.com/details.html?package=anax
http://vcpkgx.com/details.html?package=coin-or-cbc
http://vcpkgx.com/details.html?package=cppdap
http://vcpkgx.com/details.html?package=imgui
http://vcpkgx.com/details.html?package=minisat-master-keying
http://vcpkgx.com/details.html?package=cargs
http://vcpkgx.com/details.html?package=ngtcp2
http://vcpkgx.com/details.html?package=efsw
http://vcpkgx.com/details.html?package=sparsehash
http://vcpkgx.com/details.html?package=kf5attica
http://vcpkgx.com/details.html?package=etcd-cpp-apiv3
http://vcpkgx.com/details.html?package=rttr
http://vcpkgx.com/details.html?package=bzip2
http://vcpkgx.com/details.html?package=qtinterfaceframework
http://vcpkgx.com/details.html?package=clickhouse-cpp
http://vcpkgx.com/details.html?package=foonathan-lexy
http://vcpkgx.com/details.html?package=boost
http://vcpkgx.com/details.html?package=libzim
http://vcpkgx.com/details.html?package=vulkan-memory-allocator
http://vcpkgx.com/details.html?package=comms-ublox
http://vcpkgx.com/details.html?package=luabridge
http://vcpkgx.com/details.html?package=libsodium
http://vcpkgx.com/details.html?package=libcgroup
http://vcpkgx.com/details.html?package=boost-charconv
http://vcpkgx.com/details.html?package=seasocks
http://vcpkgx.com/details.html?package=freeopcua
http://vcpkgx.com/details.html?package=anyrpc
http://vcpkgx.com/details.html?package=symengine
http://vcpkgx.com/details.html?package=qt5-webglplugin
http://vcpkgx.com/details.html?package=gdal
http://vcpkgx.com/details.html?package=libnice
http://vcpkgx.com/details.html?package=sfsexp
http://vcpkgx.com/details.html?package=tsl-ordered-map
http://vcpkgx.com/details.html?package=libqcow
http://vcpkgx.com/details.html?package=winsock2
http://vcpkgx.com/details.html?package=pravila00-make-vector
http://vcpkgx.com/details.html?package=http-parser
http://vcpkgx.com/details.html?package=grppi
http://vcpkgx.com/details.html?package=nccl
http://vcpkgx.com/details.html?package=aws-c-auth
http://vcpkgx.com/details.html?package=asmjit
http://vcpkgx.com/details.html?package=azure-core-tracing-opentelemetry-cpp
http://vcpkgx.com/details.html?package=hdr-histogram
http://vcpkgx.com/details.html?package=safeint
http://vcpkgx.com/details.html?package=boost-json
http://vcpkgx.com/details.html?package=sigmatch
http://vcpkgx.com/details.html?package=tgui
http://vcpkgx.com/details.html?package=keccak-tiny
http://vcpkgx.com/details.html?package=aws-checksums
http://vcpkgx.com/details.html?package=directx12-agility
http://vcpkgx.com/details.html?package=rsm-mmio
http://vcpkgx.com/details.html?package=mpark-patterns
http://vcpkgx.com/details.html?package=signalrclient
http://vcpkgx.com/details.html?package=wangle
http://vcpkgx.com/details.html?package=graphene
http://vcpkgx.com/details.html?package=speexdsp
http://vcpkgx.com/details.html?package=iniparser
http://vcpkgx.com/details.html?package=usockets
http://vcpkgx.com/details.html?package=basisu
http://vcpkgx.com/details.html?package=mpark-variant
http://vcpkgx.com/details.html?package=reactiveplusplus
http://vcpkgx.com/details.html?package=dxut
http://vcpkgx.com/details.html?package=boost-beast
http://vcpkgx.com/details.html?package=libodb
http://vcpkgx.com/details.html?package=vincentlaucsb-csv-parser
http://vcpkgx.com/details.html?package=libmodbus
http://vcpkgx.com/details.html?package=boost-property-tree
http://vcpkgx.com/details.html?package=bitserializer
http://vcpkgx.com/details.html?package=rsm-binary-io
http://vcpkgx.com/details.html?package=effolkronium-random
http://vcpkgx.com/details.html?package=boost-proto
http://vcpkgx.com/details.html?package=fizz
http://vcpkgx.com/details.html?package=nanosvg
http://vcpkgx.com/details.html?package=boost-url
http://vcpkgx.com/details.html?package=ankurvdev-embedresource
http://vcpkgx.com/details.html?package=libconfuse
http://vcpkgx.com/details.html?package=openal-soft
http://vcpkgx.com/details.html?package=lz4
http://vcpkgx.com/details.html?package=blake3
http://vcpkgx.com/details.html?package=oatpp-libressl
http://vcpkgx.com/details.html?package=msgpack11
http://vcpkgx.com/details.html?package=c89stringutils
http://vcpkgx.com/details.html?package=apr-util
http://vcpkgx.com/details.html?package=boost-redis
http://vcpkgx.com/details.html?package=libpqxx
http://vcpkgx.com/details.html?package=jasper
http://vcpkgx.com/details.html?package=draco
http://vcpkgx.com/details.html?package=zstr
http://vcpkgx.com/details.html?package=stlab
http://vcpkgx.com/details.html?package=unicorn-lib
http://vcpkgx.com/details.html?package=gz-physics6
http://vcpkgx.com/details.html?package=mosquitto
http://vcpkgx.com/details.html?package=ignition-common1
http://vcpkgx.com/details.html?package=sfgui
http://vcpkgx.com/details.html?package=matio
http://vcpkgx.com/details.html?package=restc-cpp
http://vcpkgx.com/details.html?package=clara
http://vcpkgx.com/details.html?package=speex
http://vcpkgx.com/details.html?package=cddlib
http://vcpkgx.com/details.html?package=mhook
http://vcpkgx.com/details.html?package=spirv-reflect
http://vcpkgx.com/details.html?package=rtabmap
http://vcpkgx.com/details.html?package=audiofile
http://vcpkgx.com/details.html?package=check
http://vcpkgx.com/details.html?package=wintoast
http://vcpkgx.com/details.html?package=chmlib
http://vcpkgx.com/details.html?package=spscqueue
http://vcpkgx.com/details.html?package=randomstr
http://vcpkgx.com/details.html?package=tensorflow-cc
http://vcpkgx.com/details.html?package=type-safe
http://vcpkgx.com/details.html?package=mariadb-connector-cpp
http://vcpkgx.com/details.html?package=c-dbg-macro
http://vcpkgx.com/details.html?package=aricpp
http://vcpkgx.com/details.html?package=kf5itemviews
http://vcpkgx.com/details.html?package=butteraugli
http://vcpkgx.com/details.html?package=minifb
http://vcpkgx.com/details.html?package=recastnavigation
http://vcpkgx.com/details.html?package=sigslot
http://vcpkgx.com/details.html?package=activemq-cpp
http://vcpkgx.com/details.html?package=libmpeg2
http://vcpkgx.com/details.html?package=gli
http://vcpkgx.com/details.html?package=libodb-sqlite
http://vcpkgx.com/details.html?package=blpapi
http://vcpkgx.com/details.html?package=libzen
http://vcpkgx.com/details.html?package=eabase
http://vcpkgx.com/details.html?package=libe57format
http://vcpkgx.com/details.html?package=buck-yeh-bux-sqlite
http://vcpkgx.com/details.html?package=boost-exception
http://vcpkgx.com/details.html?package=boost-uuid
http://vcpkgx.com/details.html?package=vcglib
http://vcpkgx.com/details.html?package=boost-range
http://vcpkgx.com/details.html?package=pfultz2-linq
http://vcpkgx.com/details.html?package=lexbor
http://vcpkgx.com/details.html?package=foxi
http://vcpkgx.com/details.html?package=boost-mp11
http://vcpkgx.com/details.html?package=opencv4
http://vcpkgx.com/details.html?package=argumentum
http://vcpkgx.com/details.html?package=byte-lite
http://vcpkgx.com/details.html?package=libtracepoint
http://vcpkgx.com/details.html?package=getopt
http://vcpkgx.com/details.html?package=kubernetes
http://vcpkgx.com/details.html?package=ctp
http://vcpkgx.com/details.html?package=moos-essential
http://vcpkgx.com/details.html?package=magic-get
http://vcpkgx.com/details.html?package=liblemon
http://vcpkgx.com/details.html?package=portaudio
http://vcpkgx.com/details.html?package=libsass
http://vcpkgx.com/details.html?package=azure-macro-utils-c
http://vcpkgx.com/details.html?package=rxqt
http://vcpkgx.com/details.html?package=recycle
http://vcpkgx.com/details.html?package=pdcurses
http://vcpkgx.com/details.html?package=docopt
http://vcpkgx.com/details.html?package=nanobind
http://vcpkgx.com/details.html?package=mathgl
http://vcpkgx.com/details.html?package=boost-preprocessor
http://vcpkgx.com/details.html?package=boost-static-assert
http://vcpkgx.com/details.html?package=qt5
http://vcpkgx.com/details.html?package=libadlmidi
http://vcpkgx.com/details.html?package=think-cell-range
http://vcpkgx.com/details.html?package=zug
http://vcpkgx.com/details.html?package=sqlpp11-connector-sqlite3
http://vcpkgx.com/details.html?package=tiny-bignum-c
http://vcpkgx.com/details.html?package=clapack
http://vcpkgx.com/details.html?package=pystring
http://vcpkgx.com/details.html?package=libguarded
http://vcpkgx.com/details.html?package=boost-timer
http://vcpkgx.com/details.html?package=mongo-cxx-driver
http://vcpkgx.com/details.html?package=libalkimia
http://vcpkgx.com/details.html?package=libmikmod
http://vcpkgx.com/details.html?package=coolprop
http://vcpkgx.com/details.html?package=lightningscanner
http://vcpkgx.com/details.html?package=tensorflow-common
http://vcpkgx.com/details.html?package=boost-contract
http://vcpkgx.com/details.html?package=boost-hof
http://vcpkgx.com/details.html?package=boost-fusion
http://vcpkgx.com/details.html?package=frozen
http://vcpkgx.com/details.html?package=omplapp
http://vcpkgx.com/details.html?package=ttauri
http://vcpkgx.com/details.html?package=pbc
http://vcpkgx.com/details.html?package=ctpg
http://vcpkgx.com/details.html?package=blingfire
http://vcpkgx.com/details.html?package=daw-utf-range
http://vcpkgx.com/details.html?package=spdk
http://vcpkgx.com/details.html?package=rapidcheck
http://vcpkgx.com/details.html?package=gz-utils2
http://vcpkgx.com/details.html?package=boost-coroutine
http://vcpkgx.com/details.html?package=json5-parser
http://vcpkgx.com/details.html?package=libxscrnsaver
http://vcpkgx.com/details.html?package=selene
http://vcpkgx.com/details.html?package=pulseaudio
http://vcpkgx.com/details.html?package=libjxl
http://vcpkgx.com/details.html?package=pprint
http://vcpkgx.com/details.html?package=ztd-platform
http://vcpkgx.com/details.html?package=libassert
http://vcpkgx.com/details.html?package=webview2
http://vcpkgx.com/details.html?package=nethost
http://vcpkgx.com/details.html?package=kf5sonnet
http://vcpkgx.com/details.html?package=mnn
http://vcpkgx.com/details.html?package=freeimage
http://vcpkgx.com/details.html?package=josuttis-jthread
http://vcpkgx.com/details.html?package=boost-atomic
http://vcpkgx.com/details.html?package=stdexec
http://vcpkgx.com/details.html?package=nlohmann-json
http://vcpkgx.com/details.html?package=autodock-vina
http://vcpkgx.com/details.html?package=asiosdk
http://vcpkgx.com/details.html?package=sdl2
http://vcpkgx.com/details.html?package=bddisasm
http://vcpkgx.com/details.html?package=miniz
http://vcpkgx.com/details.html?package=vcpkg-pkgconfig-get-modules
http://vcpkgx.com/details.html?package=libsmb2
http://vcpkgx.com/details.html?package=gklib
http://vcpkgx.com/details.html?package=lapack
http://vcpkgx.com/details.html?package=libsonic
http://vcpkgx.com/details.html?package=nativefiledialog-extended
http://vcpkgx.com/details.html?package=libical
http://vcpkgx.com/details.html?package=modern-cpp-kafka
http://vcpkgx.com/details.html?package=mygui
http://vcpkgx.com/details.html?package=boost-fiber
http://vcpkgx.com/details.html?package=bitserializer-pugixml
http://vcpkgx.com/details.html?package=fixed-string
http://vcpkgx.com/details.html?package=libtommath
http://vcpkgx.com/details.html?package=brotli
http://vcpkgx.com/details.html?package=qtdoc
http://vcpkgx.com/details.html?package=xtl
http://vcpkgx.com/details.html?package=torch-th
http://vcpkgx.com/details.html?package=cpp-jwt
http://vcpkgx.com/details.html?package=mujoco
http://vcpkgx.com/details.html?package=kwsys
http://vcpkgx.com/details.html?package=azure-storage-files-shares-cpp
http://vcpkgx.com/details.html?package=qtquickeffectmaker
http://vcpkgx.com/details.html?package=czmq
http://vcpkgx.com/details.html?package=ogdf
http://vcpkgx.com/details.html?package=eve
http://vcpkgx.com/details.html?package=libxdf
http://vcpkgx.com/details.html?package=magic-enum
http://vcpkgx.com/details.html?package=cpp-async
http://vcpkgx.com/details.html?package=boost-static-string
http://vcpkgx.com/details.html?package=rivers
http://vcpkgx.com/details.html?package=tuplet
http://vcpkgx.com/details.html?package=mathter
http://vcpkgx.com/details.html?package=tabulate
http://vcpkgx.com/details.html?package=asio-grpc
http://vcpkgx.com/details.html?package=libxrandr
http://vcpkgx.com/details.html?package=cnl
http://vcpkgx.com/details.html?package=dav1d
http://vcpkgx.com/details.html?package=umock-c
http://vcpkgx.com/details.html?package=taskflow
http://vcpkgx.com/details.html?package=immer
http://vcpkgx.com/details.html?package=aubio
http://vcpkgx.com/details.html?package=boost-algorithm
http://vcpkgx.com/details.html?package=entityx
http://vcpkgx.com/details.html?package=dirent
http://vcpkgx.com/details.html?package=cppcoro
http://vcpkgx.com/details.html?package=cudnn
http://vcpkgx.com/details.html?package=libxv
http://vcpkgx.com/details.html?package=sdformat13
http://vcpkgx.com/details.html?package=libtorch
http://vcpkgx.com/details.html?package=opus
http://vcpkgx.com/details.html?package=capnproto
http://vcpkgx.com/details.html?package=readline-win32
http://vcpkgx.com/details.html?package=miniply
http://vcpkgx.com/details.html?package=reproc
http://vcpkgx.com/details.html?package=magnum
http://vcpkgx.com/details.html?package=tmxlite
http://vcpkgx.com/details.html?package=fbthrift
http://vcpkgx.com/details.html?package=lmdb
http://vcpkgx.com/details.html?package=salome-medcoupling
http://vcpkgx.com/details.html?package=libopensp
http://vcpkgx.com/details.html?package=aws-c-compression
http://vcpkgx.com/details.html?package=yasm-tool-helper
http://vcpkgx.com/details.html?package=libcsv
http://vcpkgx.com/details.html?package=hunspell
http://vcpkgx.com/details.html?package=duckx
http://vcpkgx.com/details.html?package=openscap
http://vcpkgx.com/details.html?package=spirv-tools
http://vcpkgx.com/details.html?package=ltla-powerit
http://vcpkgx.com/details.html?package=boost-interprocess
http://vcpkgx.com/details.html?package=robotraconteur-companion
http://vcpkgx.com/details.html?package=libimobiledevice-glue
http://vcpkgx.com/details.html?package=utf8-range
http://vcpkgx.com/details.html?package=ed25519
http://vcpkgx.com/details.html?package=curlcpp
http://vcpkgx.com/details.html?package=gz-fuel-tools8
http://vcpkgx.com/details.html?package=coin-or-cgl
http://vcpkgx.com/details.html?package=libfontenc
http://vcpkgx.com/details.html?package=wcslib
http://vcpkgx.com/details.html?package=xqilla
http://vcpkgx.com/details.html?package=libssh2
http://vcpkgx.com/details.html?package=jack2
http://vcpkgx.com/details.html?package=tinyspline
http://vcpkgx.com/details.html?package=xcb-image
http://vcpkgx.com/details.html?package=qtimageformats
http://vcpkgx.com/details.html?package=openfx
http://vcpkgx.com/details.html?package=usbmuxd
http://vcpkgx.com/details.html?package=vkfft
http://vcpkgx.com/details.html?package=g2o
http://vcpkgx.com/details.html?package=rapidxml-ns
http://vcpkgx.com/details.html?package=murmurhash
http://vcpkgx.com/details.html?package=via-httplib
http://vcpkgx.com/details.html?package=qt5-networkauth
http://vcpkgx.com/details.html?package=convectionkernels
http://vcpkgx.com/details.html?package=libodb-boost
http://vcpkgx.com/details.html?package=utf8proc
http://vcpkgx.com/details.html?package=mlpack
http://vcpkgx.com/details.html?package=fltk
http://vcpkgx.com/details.html?package=gsoap
http://vcpkgx.com/details.html?package=nanopb
http://vcpkgx.com/details.html?package=kf5globalaccel
http://vcpkgx.com/details.html?package=gts
http://vcpkgx.com/details.html?package=physfs
http://vcpkgx.com/details.html?package=json-c
http://vcpkgx.com/details.html?package=openfbx
http://vcpkgx.com/details.html?package=openjpeg
http://vcpkgx.com/details.html?package=aklomp-base64
http://vcpkgx.com/details.html?package=ndis-driver-library
http://vcpkgx.com/details.html?package=quickfix
http://vcpkgx.com/details.html?package=tesseract
http://vcpkgx.com/details.html?package=wxwidgets
http://vcpkgx.com/details.html?package=azure-security-keyvault-secrets-cpp
http://vcpkgx.com/details.html?package=at-spi2-core
http://vcpkgx.com/details.html?package=mtlt
http://vcpkgx.com/details.html?package=tinytoml
http://vcpkgx.com/details.html?package=milerius-sfml-imgui
http://vcpkgx.com/details.html?package=libmount
http://vcpkgx.com/details.html?package=smf
http://vcpkgx.com/details.html?package=phnt
http://vcpkgx.com/details.html?package=libgxps
http://vcpkgx.com/details.html?package=opencolorio
http://vcpkgx.com/details.html?package=aws-c-mqtt
http://vcpkgx.com/details.html?package=qtgraphs
http://vcpkgx.com/details.html?package=colmap
http://vcpkgx.com/details.html?package=nanoprintf
http://vcpkgx.com/details.html?package=discord-game-sdk
http://vcpkgx.com/details.html?package=jsonnet
http://vcpkgx.com/details.html?package=boringssl
http://vcpkgx.com/details.html?package=oatpp-swagger
http://vcpkgx.com/details.html?package=fdk-aac
http://vcpkgx.com/details.html?package=xproto
http://vcpkgx.com/details.html?package=boost-multi-array
http://vcpkgx.com/details.html?package=libgwenhywfar
http://vcpkgx.com/details.html?package=libepoxy
http://vcpkgx.com/details.html?package=slikenet
http://vcpkgx.com/details.html?package=rxspencer
http://vcpkgx.com/details.html?package=paraview
http://vcpkgx.com/details.html?package=hyperscan
http://vcpkgx.com/details.html?package=gz-common5
http://vcpkgx.com/details.html?package=oatpp-ssdp
http://vcpkgx.com/details.html?package=scenepic
http://vcpkgx.com/details.html?package=kf5configwidgets
http://vcpkgx.com/details.html?package=qt5-macextras
http://vcpkgx.com/details.html?package=brigand
http://vcpkgx.com/details.html?package=libxxf86vm
http://vcpkgx.com/details.html?package=libcopp
http://vcpkgx.com/details.html?package=drogon
http://vcpkgx.com/details.html?package=abseil
http://vcpkgx.com/details.html?package=libjuice
http://vcpkgx.com/details.html?package=intelrdfpmathlib
http://vcpkgx.com/details.html?package=miniupnpc
http://vcpkgx.com/details.html?package=fastio
http://vcpkgx.com/details.html?package=readline
http://vcpkgx.com/details.html?package=mpir
http://vcpkgx.com/details.html?package=libmicrohttpd
http://vcpkgx.com/details.html?package=darknet
http://vcpkgx.com/details.html?package=zziplib
http://vcpkgx.com/details.html?package=serdepp
http://vcpkgx.com/details.html?package=cdt
http://vcpkgx.com/details.html?package=google-cloud-cpp-spanner
http://vcpkgx.com/details.html?package=argtable3
http://vcpkgx.com/details.html?package=libpff
http://vcpkgx.com/details.html?package=nonius
http://vcpkgx.com/details.html?package=perfetto
http://vcpkgx.com/details.html?package=soci
http://vcpkgx.com/details.html?package=qt5-remoteobjects
http://vcpkgx.com/details.html?package=s2n
http://vcpkgx.com/details.html?package=simple-fft
http://vcpkgx.com/details.html?package=qt5-modularscripts
http://vcpkgx.com/details.html?package=openctm
http://vcpkgx.com/details.html?package=liberasurecode
http://vcpkgx.com/details.html?package=realm-core
http://vcpkgx.com/details.html?package=kissnet
http://vcpkgx.com/details.html?package=ogre-next
http://vcpkgx.com/details.html?package=flux
http://vcpkgx.com/details.html?package=xtrans
http://vcpkgx.com/details.html?package=irrxml
http://vcpkgx.com/details.html?package=libatomic-ops
http://vcpkgx.com/details.html?package=opendnp3
http://vcpkgx.com/details.html?package=boost-circular-buffer
http://vcpkgx.com/details.html?package=ignition-msgs6
http://vcpkgx.com/details.html?package=oatpp-zlib
http://vcpkgx.com/details.html?package=quirc
http://vcpkgx.com/details.html?package=sleepy-discord
http://vcpkgx.com/details.html?package=isal
http://vcpkgx.com/details.html?package=libxext
http://vcpkgx.com/details.html?package=ade
http://vcpkgx.com/details.html?package=tgbot-cpp
http://vcpkgx.com/details.html?package=parquet
http://vcpkgx.com/details.html?package=vvenc
http://vcpkgx.com/details.html?package=json-spirit
http://vcpkgx.com/details.html?package=pkgconf
http://vcpkgx.com/details.html?package=opengl-registry
http://vcpkgx.com/details.html?package=gamenetworkingsockets
http://vcpkgx.com/details.html?package=asmtk
http://vcpkgx.com/details.html?package=tinytiff
http://vcpkgx.com/details.html?package=libtracepoint-control
http://vcpkgx.com/details.html?package=projectm-eval
http://vcpkgx.com/details.html?package=kerbal
http://vcpkgx.com/details.html?package=ppmagic
http://vcpkgx.com/details.html?package=libxpresent
http://vcpkgx.com/details.html?package=kcp
http://vcpkgx.com/details.html?package=boost-ptr-container
http://vcpkgx.com/details.html?package=protobuf-c
http://vcpkgx.com/details.html?package=directxmath
http://vcpkgx.com/details.html?package=clblas
http://vcpkgx.com/details.html?package=nrf-ble-driver
http://vcpkgx.com/details.html?package=mozjpeg
http://vcpkgx.com/details.html?package=simpleble
http://vcpkgx.com/details.html?package=mapnik
http://vcpkgx.com/details.html?package=libunistring
http://vcpkgx.com/details.html?package=rkcommon
http://vcpkgx.com/details.html?package=gz-msgs9
http://vcpkgx.com/details.html?package=mbedtls
http://vcpkgx.com/details.html?package=boost-chrono
http://vcpkgx.com/details.html?package=libremidi
http://vcpkgx.com/details.html?package=random123
http://vcpkgx.com/details.html?package=boost-multiprecision
http://vcpkgx.com/details.html?package=bullet3
http://vcpkgx.com/details.html?package=ccfits
http://vcpkgx.com/details.html?package=cuda-api-wrappers
http://vcpkgx.com/details.html?package=gdk-pixbuf
http://vcpkgx.com/details.html?package=buck-yeh-bux
http://vcpkgx.com/details.html?package=esaxx
http://vcpkgx.com/details.html?package=tinyfsm
http://vcpkgx.com/details.html?package=openxr-loader
http://vcpkgx.com/details.html?package=ftgl
http://vcpkgx.com/details.html?package=argon2
http://vcpkgx.com/details.html?package=azure-security-attestation-cpp
http://vcpkgx.com/details.html?package=wildmidi
http://vcpkgx.com/details.html?package=libyuv
http://vcpkgx.com/details.html?package=fakeit
http://vcpkgx.com/details.html?package=boost-multi-index
http://vcpkgx.com/details.html?package=vectorclass
http://vcpkgx.com/details.html?package=openmpi
http://vcpkgx.com/details.html?package=nt-wrapper
http://vcpkgx.com/details.html?package=libxslt
http://vcpkgx.com/details.html?package=tl-ranges
http://vcpkgx.com/details.html?package=openvpn3
http://vcpkgx.com/details.html?package=advobfuscator
http://vcpkgx.com/details.html?package=caffe2
http://vcpkgx.com/details.html?package=google-cloud-cpp
http://vcpkgx.com/details.html?package=cppxaml
http://vcpkgx.com/details.html?package=pocketfft
http://vcpkgx.com/details.html?package=nodesoup
http://vcpkgx.com/details.html?package=libosdp
http://vcpkgx.com/details.html?package=coin-or-clp
http://vcpkgx.com/details.html?package=metis
http://vcpkgx.com/details.html?package=fp16
http://vcpkgx.com/details.html?package=libodb-pgsql
http://vcpkgx.com/details.html?package=v-hacd
http://vcpkgx.com/details.html?package=inih
http://vcpkgx.com/details.html?package=sassc
http://vcpkgx.com/details.html?package=ashes
http://vcpkgx.com/details.html?package=libice
http://vcpkgx.com/details.html?package=xlsxio
http://vcpkgx.com/details.html?package=spirv-cross
http://vcpkgx.com/details.html?package=hwloc
http://vcpkgx.com/details.html?package=backward-cpp
http://vcpkgx.com/details.html?package=loguru
http://vcpkgx.com/details.html?package=boost-function-types
http://vcpkgx.com/details.html?package=compoundfilereader
http://vcpkgx.com/details.html?package=freetype-gl
http://vcpkgx.com/details.html?package=woff2
http://vcpkgx.com/details.html?package=flat
http://vcpkgx.com/details.html?package=flashlight-text
http://vcpkgx.com/details.html?package=libnop
http://vcpkgx.com/details.html?package=conjure-enum
http://vcpkgx.com/details.html?package=sciplot
http://vcpkgx.com/details.html?package=bond
http://vcpkgx.com/details.html?package=boost-type-erasure
http://vcpkgx.com/details.html?package=libpcap
http://vcpkgx.com/details.html?package=fmilib
http://vcpkgx.com/details.html?package=lpeg
http://vcpkgx.com/details.html?package=vcpkg-cmake-get-vars
http://vcpkgx.com/details.html?package=usearch
http://vcpkgx.com/details.html?package=onednn
http://vcpkgx.com/details.html?package=hungarian
http://vcpkgx.com/details.html?package=liblzf
http://vcpkgx.com/details.html?package=vcpkg-get-python
http://vcpkgx.com/details.html?package=minizip-ng
http://vcpkgx.com/details.html?package=azure-storage-cpp
http://vcpkgx.com/details.html?package=robotraconteur
http://vcpkgx.com/details.html?package=gdcm
http://vcpkgx.com/details.html?package=sdl1-net
http://vcpkgx.com/details.html?package=pmdk
http://vcpkgx.com/details.html?package=libmupdf
http://vcpkgx.com/details.html?package=boost-core
http://vcpkgx.com/details.html?package=plog
http://vcpkgx.com/details.html?package=ms-ifc-sdk
http://vcpkgx.com/details.html?package=winreg
http://vcpkgx.com/details.html?package=godot-cpp
http://vcpkgx.com/details.html?package=salome-configuration
http://vcpkgx.com/details.html?package=ztd-static-containers
http://vcpkgx.com/details.html?package=yyjson
http://vcpkgx.com/details.html?package=mimalloc
http://vcpkgx.com/details.html?package=dv-processing
http://vcpkgx.com/details.html?package=openmesh
http://vcpkgx.com/details.html?package=bext-di
http://vcpkgx.com/details.html?package=approval-tests-cpp
http://vcpkgx.com/details.html?package=libflac
http://vcpkgx.com/details.html?package=libcerf
http://vcpkgx.com/details.html?package=openblas
http://vcpkgx.com/details.html?package=libxkbcommon
http://vcpkgx.com/details.html?package=opencensus-cpp
http://vcpkgx.com/details.html?package=vcpkg-tool-ninja
http://vcpkgx.com/details.html?package=bitserializer-cpprestjson
http://vcpkgx.com/details.html?package=oatpp-openssl
http://vcpkgx.com/details.html?package=vulkan-hpp
http://vcpkgx.com/details.html?package=armadillo
http://vcpkgx.com/details.html?package=litehtml
http://vcpkgx.com/details.html?package=vcpkg-tool-lessmsi
http://vcpkgx.com/details.html?package=lodepng-c
http://vcpkgx.com/details.html?package=daw-header-libraries
http://vcpkgx.com/details.html?package=rendergraph
http://vcpkgx.com/details.html?package=crow
http://vcpkgx.com/details.html?package=freerdp
http://vcpkgx.com/details.html?package=cpr
http://vcpkgx.com/details.html?package=kf5dbusaddons
http://vcpkgx.com/details.html?package=kf5wallet
http://vcpkgx.com/details.html?package=boost-wave
http://vcpkgx.com/details.html?package=json-rpc-cxx
http://vcpkgx.com/details.html?package=libffi
http://vcpkgx.com/details.html?package=tensorpipe
http://vcpkgx.com/details.html?package=nanoflann
http://vcpkgx.com/details.html?package=expected-lite
http://vcpkgx.com/details.html?package=triton
http://vcpkgx.com/details.html?package=libtar
http://vcpkgx.com/details.html?package=mmloader
http://vcpkgx.com/details.html?package=vcpkg-tool-meson
http://vcpkgx.com/details.html?package=vcpkg-cmake-config
http://vcpkgx.com/details.html?package=maddy
http://vcpkgx.com/details.html?package=seqan
http://vcpkgx.com/details.html?package=openssl-uwp
http://vcpkgx.com/details.html?package=glaze
http://vcpkgx.com/details.html?package=staticjson
http://vcpkgx.com/details.html?package=spaceland
http://vcpkgx.com/details.html?package=genann
http://vcpkgx.com/details.html?package=kangaru
http://vcpkgx.com/details.html?package=xframe
http://vcpkgx.com/details.html?package=restclient-cpp
http://vcpkgx.com/details.html?package=ktx
http://vcpkgx.com/details.html?package=boost-serialization
http://vcpkgx.com/details.html?package=tlx
http://vcpkgx.com/details.html?package=freetds
http://vcpkgx.com/details.html?package=turbobase64
http://vcpkgx.com/details.html?package=gperf
http://vcpkgx.com/details.html?package=libxtst
http://vcpkgx.com/details.html?package=mongo-c-driver
http://vcpkgx.com/details.html?package=qca
http://vcpkgx.com/details.html?package=decimal-for-cpp
http://vcpkgx.com/details.html?package=libxfont
http://vcpkgx.com/details.html?package=boost-filesystem
http://vcpkgx.com/details.html?package=libaaplus
http://vcpkgx.com/details.html?package=configcat
http://vcpkgx.com/details.html?package=moos-ui
http://vcpkgx.com/details.html?package=ztd-idk
http://vcpkgx.com/details.html?package=fann
http://vcpkgx.com/details.html?package=wavelib
http://vcpkgx.com/details.html?package=kf5auth
http://vcpkgx.com/details.html?package=glpk
http://vcpkgx.com/details.html?package=eventpp
http://vcpkgx.com/details.html?package=cryptopp
http://vcpkgx.com/details.html?package=libimobiledevice
http://vcpkgx.com/details.html?package=dpp
http://vcpkgx.com/details.html?package=string-theory
http://vcpkgx.com/details.html?package=boost-tuple
http://vcpkgx.com/details.html?package=fuzzylite
http://vcpkgx.com/details.html?package=boost-callable-traits
http://vcpkgx.com/details.html?package=googleapis
http://vcpkgx.com/details.html?package=mqtt-cpp
http://vcpkgx.com/details.html?package=catch
http://vcpkgx.com/details.html?package=qt5-doc
http://vcpkgx.com/details.html?package=flash-runtime-extensions
http://vcpkgx.com/details.html?package=allegro5
http://vcpkgx.com/details.html?package=libgit2
http://vcpkgx.com/details.html?package=libqrencode
http://vcpkgx.com/details.html?package=serd
http://vcpkgx.com/details.html?package=glslang
http://vcpkgx.com/details.html?package=plibsys
http://vcpkgx.com/details.html?package=boost-crc
http://vcpkgx.com/details.html?package=cgns
http://vcpkgx.com/details.html?package=cityhash
http://vcpkgx.com/details.html?package=boost-describe
http://vcpkgx.com/details.html?package=qt5-tools
http://vcpkgx.com/details.html?package=cpputest
http://vcpkgx.com/details.html?package=flatbuffers
http://vcpkgx.com/details.html?package=vlfeat
http://vcpkgx.com/details.html?package=octomap
http://vcpkgx.com/details.html?package=boost-context
http://vcpkgx.com/details.html?package=celero
http://vcpkgx.com/details.html?package=sqlcipher
http://vcpkgx.com/details.html?package=nowide
http://vcpkgx.com/details.html?package=xcb-proto
http://vcpkgx.com/details.html?package=meschach
http://vcpkgx.com/details.html?package=ngspice
http://vcpkgx.com/details.html?package=libodb-mysql
http://vcpkgx.com/details.html?package=ms-gltf
http://vcpkgx.com/details.html?package=rbdl
http://vcpkgx.com/details.html?package=coin-or-ipopt
http://vcpkgx.com/details.html?package=g3log
http://vcpkgx.com/details.html?package=kf5archive
http://vcpkgx.com/details.html?package=gasol
http://vcpkgx.com/details.html?package=ctstraffic
http://vcpkgx.com/details.html?package=krabsetw
http://vcpkgx.com/details.html?package=wmipp
http://vcpkgx.com/details.html?package=boinc
http://vcpkgx.com/details.html?package=scotch
http://vcpkgx.com/details.html?package=boost-stacktrace
http://vcpkgx.com/details.html?package=pmp-library
http://vcpkgx.com/details.html?package=boost-iostreams
http://vcpkgx.com/details.html?package=minimp3
http://vcpkgx.com/details.html?package=triangle
http://vcpkgx.com/details.html?package=shaderc
http://vcpkgx.com/details.html?package=openmama
http://vcpkgx.com/details.html?package=rexo
http://vcpkgx.com/details.html?package=vcpkg-gfortran
http://vcpkgx.com/details.html?package=azure-messaging-eventhubs-cpp
http://vcpkgx.com/details.html?package=fast-float
http://vcpkgx.com/details.html?package=libdatachannel
http://vcpkgx.com/details.html?package=date
http://vcpkgx.com/details.html?package=boost-build
http://vcpkgx.com/details.html?package=azure-storage-blobs-cpp
http://vcpkgx.com/details.html?package=libfabric
http://vcpkgx.com/details.html?package=solid3
http://vcpkgx.com/details.html?package=libstk
http://vcpkgx.com/details.html?package=fineftp
http://vcpkgx.com/details.html?package=baresip-libre
http://vcpkgx.com/details.html?package=tweeny
http://vcpkgx.com/details.html?package=tinyobjloader
http://vcpkgx.com/details.html?package=pybind11
http://vcpkgx.com/details.html?package=sese
http://vcpkgx.com/details.html?package=dylib
http://vcpkgx.com/details.html?package=lemon
http://vcpkgx.com/details.html?package=boost-qvm
http://vcpkgx.com/details.html?package=taglib
http://vcpkgx.com/details.html?package=minhook
http://vcpkgx.com/details.html?package=libgpiod
http://vcpkgx.com/details.html?package=directxtk12
http://vcpkgx.com/details.html?package=vcpkg-boost
http://vcpkgx.com/details.html?package=ois
http://vcpkgx.com/details.html?package=lfreist-hwinfo
http://vcpkgx.com/details.html?package=berkeleydb
http://vcpkgx.com/details.html?package=joltphysics
http://vcpkgx.com/details.html?package=comms
http://vcpkgx.com/details.html?package=discount
http://vcpkgx.com/details.html?package=nspr
http://vcpkgx.com/details.html?package=qt5-graphicaleffects
http://vcpkgx.com/details.html?package=plasma-wayland-protocols
http://vcpkgx.com/details.html?package=mdspan
http://vcpkgx.com/details.html?package=utfz
http://vcpkgx.com/details.html?package=yajl
http://vcpkgx.com/details.html?package=qtgrpc
http://vcpkgx.com/details.html?package=oof
http://vcpkgx.com/details.html?package=lua-compat53
http://vcpkgx.com/details.html?package=lzokay
http://vcpkgx.com/details.html?package=kf5texteditor
http://vcpkgx.com/details.html?package=libcap
http://vcpkgx.com/details.html?package=atlmfc
http://vcpkgx.com/details.html?package=libdshowcapture
http://vcpkgx.com/details.html?package=zint
http://vcpkgx.com/details.html?package=coin-or-buildtools
http://vcpkgx.com/details.html?package=xbyak
http://vcpkgx.com/details.html?package=sqlpp11-connector-mysql
http://vcpkgx.com/details.html?package=lunarg-vulkantools
http://vcpkgx.com/details.html?package=opencl
http://vcpkgx.com/details.html?package=tclap
http://vcpkgx.com/details.html?package=boost-container
http://vcpkgx.com/details.html?package=nvidia-cutlass
http://vcpkgx.com/details.html?package=rply
http://vcpkgx.com/details.html?package=b64
http://vcpkgx.com/details.html?package=simdutf
http://vcpkgx.com/details.html?package=gherkin-c
http://vcpkgx.com/details.html?package=cctz
http://vcpkgx.com/details.html?package=licensepp
http://vcpkgx.com/details.html?package=optional-bare
http://vcpkgx.com/details.html?package=liblsl
http://vcpkgx.com/details.html?package=clipboardxx
http://vcpkgx.com/details.html?package=string-view-lite
http://vcpkgx.com/details.html?package=libosip2
http://vcpkgx.com/details.html?package=gaussianlib
http://vcpkgx.com/details.html?package=spout2
http://vcpkgx.com/details.html?package=kinectsdk1
http://vcpkgx.com/details.html?package=wolfmqtt
http://vcpkgx.com/details.html?package=hexl
http://vcpkgx.com/details.html?package=azure-umqtt-c
http://vcpkgx.com/details.html?package=msinttypes
http://vcpkgx.com/details.html?package=thor
http://vcpkgx.com/details.html?package=boost-property-map
http://vcpkgx.com/details.html?package=kf5windowsystem
http://vcpkgx.com/details.html?package=libbacktrace
http://vcpkgx.com/details.html?package=nlohmann-fifo-map
http://vcpkgx.com/details.html?package=cppmicroservices
http://vcpkgx.com/details.html?package=adios2
http://vcpkgx.com/details.html?package=spirit-po
http://vcpkgx.com/details.html?package=librsync
http://vcpkgx.com/details.html?package=libxlsxwriter
http://vcpkgx.com/details.html?package=azure-storage-files-datalake-cpp
http://vcpkgx.com/details.html?package=qt5-declarative
http://vcpkgx.com/details.html?package=curlpp
http://vcpkgx.com/details.html?package=openh264
http://vcpkgx.com/details.html?package=idevicerestore
http://vcpkgx.com/details.html?package=cista
http://vcpkgx.com/details.html?package=nlopt
http://vcpkgx.com/details.html?package=tree-sitter
http://vcpkgx.com/details.html?package=qttranslations
http://vcpkgx.com/details.html?package=atl
http://vcpkgx.com/details.html?package=glui
http://vcpkgx.com/details.html?package=io2d
http://vcpkgx.com/details.html?package=breakpad
http://vcpkgx.com/details.html?package=vulkan-utility-libraries
http://vcpkgx.com/details.html?package=annoy
http://vcpkgx.com/details.html?package=proj
http://vcpkgx.com/details.html?package=libsigcpp-3
http://vcpkgx.com/details.html?package=rtlsdr
http://vcpkgx.com/details.html?package=azure-c-shared-utility
http://vcpkgx.com/details.html?package=boost-ublas
http://vcpkgx.com/details.html?package=double-conversion
http://vcpkgx.com/details.html?package=vcpkg-cmake
http://vcpkgx.com/details.html?package=libzip
http://vcpkgx.com/details.html?package=rsig
http://vcpkgx.com/details.html?package=wayland-protocols
http://vcpkgx.com/details.html?package=qt5-scxml
http://vcpkgx.com/details.html?package=gtl
http://vcpkgx.com/details.html?package=intel-ipsec
http://vcpkgx.com/details.html?package=libcorrect
http://vcpkgx.com/details.html?package=xpack
http://vcpkgx.com/details.html?package=boost-detail
http://vcpkgx.com/details.html?package=level-zero
http://vcpkgx.com/details.html?package=miniaudio
http://vcpkgx.com/details.html?package=x264
http://vcpkgx.com/details.html?package=console-bridge
http://vcpkgx.com/details.html?package=libpopt
http://vcpkgx.com/details.html?package=spdk-isal
http://vcpkgx.com/details.html?package=kf5bookmarks
http://vcpkgx.com/details.html?package=libressl
http://vcpkgx.com/details.html?package=libusbp
http://vcpkgx.com/details.html?package=qtquick3dphysics
http://vcpkgx.com/details.html?package=brynet
http://vcpkgx.com/details.html?package=azure-core-cpp
http://vcpkgx.com/details.html?package=librtmp
http://vcpkgx.com/details.html?package=yara
http://vcpkgx.com/details.html?package=libsm
http://vcpkgx.com/details.html?package=libde265
http://vcpkgx.com/details.html?package=nanogui
http://vcpkgx.com/details.html?package=llvm
http://vcpkgx.com/details.html?package=pango
http://vcpkgx.com/details.html?package=flann
http://vcpkgx.com/details.html?package=quadtree
http://vcpkgx.com/details.html?package=ntf-core
http://vcpkgx.com/details.html?package=minio-cpp
http://vcpkgx.com/details.html?package=greatest
http://vcpkgx.com/details.html?package=libhv
http://vcpkgx.com/details.html?package=cserialport
http://vcpkgx.com/details.html?package=caf
http://vcpkgx.com/details.html?package=cwapi3d
http://vcpkgx.com/details.html?package=gmsh
http://vcpkgx.com/details.html?package=atomic-queue
http://vcpkgx.com/details.html?package=orocos-kdl
http://vcpkgx.com/details.html?package=boost-cobalt
http://vcpkgx.com/details.html?package=grantlee
http://vcpkgx.com/details.html?package=color-console
http://vcpkgx.com/details.html?package=ms-angle
http://vcpkgx.com/details.html?package=llfio
http://vcpkgx.com/details.html?package=drekar-launch-process-cpp
http://vcpkgx.com/details.html?package=boost-thread
http://vcpkgx.com/details.html?package=alembic
http://vcpkgx.com/details.html?package=ignition-transport8
http://vcpkgx.com/details.html?package=openslide
http://vcpkgx.com/details.html?package=skyr-url
http://vcpkgx.com/details.html?package=cfitsio
http://vcpkgx.com/details.html?package=vulkan
http://vcpkgx.com/details.html?package=indicators