Upload 4 files
Browse files- README.md +89 -3
- docs/meson-projects.csv +316 -0
- docs/schema.png +3 -0
- docs/vcpkg-projects.csv +0 -0
README.md
CHANGED
@@ -1,3 +1,89 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!--
|
2 |
+
SPDX-FileCopyrightText: AppThreat <[email protected]>
|
3 |
+
|
4 |
+
SPDX-License-Identifier: MIT
|
5 |
+
-->
|
6 |
+
|
7 |
+
# blint-db
|
8 |
+
|
9 |
+
blint-db is a family of binary symbol databases (pre-compiled SQLite files) generated by building a [collection](./docs/vcpkg-projects.csv) of [open-source](./docs/meson-projects.csv) libraries and applications across various platforms and architectures, then generating an SBOM with OWASP [blint](https://github.com/owasp-dep-scan/blint). We started this project with C/C++ projects that can be built using [wrapdb](https://github.com/mesonbuild/wrapdb) and [vcpkg](https://github.com/microsoft/vcpkg) package managers, but we plan to extend to other ecosystems.
|
10 |
+
|
11 |
+
## Use cases
|
12 |
+
|
13 |
+
Use blint-db to:
|
14 |
+
|
15 |
+
- Improve the precision of generated SBOMs and SCA for C/C++ projects
|
16 |
+
- Vectorize data to train ML models for component identification and risk prediction from binaries
|
17 |
+
- And much more
|
18 |
+
|
19 |
+
## Build pipeline
|
20 |
+
|
21 |
+
Native binaries vary based on several factors, such as configuration, build tools, and the operating system’s architecture. The project aims to generate and publish multiple versions of the [database](https://github.com/orgs/AppThreat/packages?repo_name=blint-db), [built](https://github.com/AppThreat/blint-db/blob/21a16bf87a62a137405901c37955d95883388201/blint_db/handlers/language_handlers/meson_handler.py#L40) in both debug and stripped modes [without](https://github.com/AppThreat/blint-db/blob/21a16bf87a62a137405901c37955d95883388201/blint_db/handlers/language_handlers/vcpkg_handler.py#L89) optimizations. The following OS and architecture matrix is currently available:
|
22 |
+
|
23 |
+
- Ubuntu 24.04 — amd64, arm64
|
24 |
+
- macOS 15 — arm64
|
25 |
+
|
26 |
+
## Database Schema
|
27 |
+
|
28 |
+
The schema design is not currently stable and is likely to change as we add more build pipelines.
|
29 |
+
|
30 |
+
<img src="./docs/schema.png" alt="Blint DB schema" width="400" />
|
31 |
+
|
32 |
+
### Table: Exports
|
33 |
+
|
34 |
+
Index of all exported symbols.
|
35 |
+
|
36 |
+
```sql
|
37 |
+
CREATE TABLE Exports ( infunc VARCHAR(4096) PRIMARY KEY )
|
38 |
+
```
|
39 |
+
|
40 |
+
### Table: Projects
|
41 |
+
|
42 |
+
Contains information about the projects indexed in the database, including each project's name, purl, and additional metadata.
|
43 |
+
|
44 |
+
`source_sbom` is currently unused.
|
45 |
+
|
46 |
+
```sql
|
47 |
+
CREATE TABLE Projects ( pid INTEGER PRIMARY KEY AUTOINCREMENT, pname VARCHAR(255) UNIQUE, purl TEXT UNIQUE, metadata BLOB, source_sbom BLOB )
|
48 |
+
```
|
49 |
+
|
50 |
+
### Table: Binaries
|
51 |
+
|
52 |
+
A given project can produce multiple binary files during the build process. This table maps each generated binary to its parent project.
|
53 |
+
|
54 |
+
`bbom` is currently unused.
|
55 |
+
|
56 |
+
```sql
|
57 |
+
CREATE TABLE Binaries ( bid INTEGER PRIMARY KEY AUTOINCREMENT, pid INTEGER, bname VARCHAR(500), bbom BLOB, FOREIGN KEY (pid) REFERENCES Projects(pid) )
|
58 |
+
```
|
59 |
+
|
60 |
+
### Table: BinariesExports
|
61 |
+
|
62 |
+
This table maps exported symbols to individual binaries.
|
63 |
+
|
64 |
+
```sql
|
65 |
+
CREATE TABLE BinariesExports ( bid INTEGER, eid INTEGER, PRIMARY KEY (bid, eid), FOREIGN KEY (bid) REFERENCES Binaries(bid), FOREIGN KEY (eid) REFERENCES Exports(eid) )
|
66 |
+
```
|
67 |
+
|
68 |
+
### Search by symbol
|
69 |
+
|
70 |
+
Given a list of symbols, use the query below to identify the matching binary IDs and export IDs.
|
71 |
+
|
72 |
+
```sql
|
73 |
+
SELECT eid, group_concat(bid) from BinariesExports where eid IN (SELECT rowid from Exports where infunc IN ({symbols_list})) group by eid
|
74 |
+
```
|
75 |
+
|
76 |
+
You can then use the binary ID to retrieve the parent project’s name and purl at any time.
|
77 |
+
|
78 |
+
```sql
|
79 |
+
SELECT bname, pname, purl from Binaries JOIN Projects on Binaries.pid = Projects.pid WHERE Binaries.bid = ?
|
80 |
+
```
|
81 |
+
|
82 |
+
Apply heuristics, such as a ranking algorithm based on the number and type of matches, to reduce false positives in the results.
|
83 |
+
|
84 |
+
## Funding
|
85 |
+
|
86 |
+
This project is funded through [NGI Zero Core](https://nlnet.nl/core), a fund established by [NLnet](https://nlnet.nl) with financial support from the European Commission's [Next Generation Internet](https://ngi.eu) program. Learn more at the [NLnet project page](https://nlnet.nl/project/OWASP-dep-scan).
|
87 |
+
|
88 |
+
[<img src="https://nlnet.nl/logo/banner.png" alt="NLnet foundation logo" width="20%" />](https://nlnet.nl)
|
89 |
+
[<img src="https://nlnet.nl/image/logos/NGI0_tag.svg" alt="NGI Zero Logo" width="20%" />](https://nlnet.nl/core)
|
docs/meson-projects.csv
ADDED
@@ -0,0 +1,316 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
pname,purl
|
2 |
+
pugixml,pkg:generic/[email protected]?source_hash=610f98375424b5614754a6f34a491adbddaaec074e9044577d965160ec103d2e
|
3 |
+
zstd,pkg:generic/[email protected]?source_hash=eb33e51f49a15e023950cd7825ca74a4a2b43db8354825ac24fc1b7ee09e6fa3
|
4 |
+
libusb,pkg:generic/[email protected]?source_hash=ffaa41d741a8a3bee244ac8e54a72ea05bf2879663c098c82fc5757853441575
|
5 |
+
rdkafka,pkg:generic/[email protected]?source_hash=eaa1213fdddf9c43e28834d9a832d9dd732377d35121e42f875966305f52b8ff
|
6 |
+
enlog,pkg:generic/[email protected]?source_hash=7bbff2726d90068d4fb22a78992f53638e75fd7a6cde63f25850b819a88523e6
|
7 |
+
libpng,pkg:generic/[email protected]?source_hash=631a4c58ea6c10c81f160c4b21fa8495b715d251698ebc2552077e8450f30454
|
8 |
+
nonstd-string-view-lite,pkg:generic/[email protected]?source_hash=d83adb0495ccfba50ae5a1af70bde04f33a26dc40599b0ce9e55f09c075daf23
|
9 |
+
wayland-protocols,pkg:generic/[email protected]?source_hash=2786b6b1b79965e313f2c289c12075b9ed700d41844810c51afda10ee329576b
|
10 |
+
lmdb,pkg:generic/openldap@LMDB_0.9.29?source_hash=d4c668167a2d703ef91db733b4069b8b74dbc374405855be6626b45e2a7e2dd3
|
11 |
+
libxmlpp,pkg:generic/[email protected]?source_hash=e9a23c436686a94698d2138e6bcbaf849121d63bfa0f50dc34fefbfd79566848
|
12 |
+
libxkbcommon,pkg:generic/[email protected]?source_hash=65782f0a10a4b455af9c6baab7040e2f537520caa2ec2092805cdfd36863b247
|
13 |
+
cmark-gfm,pkg:generic/[email protected]?source_hash=5abc61798ebd9de5660bc076443c07abad2b8d15dbc11094a3a79644b8ad243a
|
14 |
+
protobuf-c,pkg:generic/[email protected]?source_hash=7b404c63361ed35b3667aec75cc37b54298d56dd2bcf369de3373212cc06fd98
|
15 |
+
libkqueue,pkg:generic/[email protected]?source_hash=c3502d918ad167957302314b6d97e14052beabc5f5698ea76d0527878900d300
|
16 |
+
libssh2,pkg:generic/[email protected]?source_hash=82b35c61c78b475647bdc981a183c5b5ab0d979e1caee94186e8f9150f2b0d0d
|
17 |
+
dragonbox,pkg:generic/[email protected]?source_hash=60938a42c1013dd214c976a019fcde893c603379f059881cb86ed0c2637e2f19
|
18 |
+
imgui-docking,pkg:generic/imgui-1.91.6@docking?source_hash=C78A11730F6E3F4911E151F96F2AA43E96ED77119599D8E7302F8294DFDB40D1
|
19 |
+
wren,pkg:generic/[email protected]?source_hash=23c0ddeb6c67a4ed9285bded49f7c91714922c2e7bb88f42428386bf1cf7b339
|
20 |
+
liburing,pkg:generic/[email protected]?source_hash=456f5f882165630f0dc7b75e8fd53bd01a955d5d4720729b4323097e6e9f2a98
|
21 |
+
google-woff2,pkg:generic/[email protected]?source_hash=add272bb09e6384a4833ffca4896350fdb16e0ca22df68c0384773c67a175594
|
22 |
+
fontconfig,pkg:generic/[email protected]?source_hash=6a33dc555cc9ba8b10caf7695878ef134eeb36d0af366041f639b1da9b6ed220
|
23 |
+
simdjson,pkg:generic/[email protected]?source_hash=eeb10661047e476aa3b535d14a32af95690691778d7afe0630a344654ff9759a
|
24 |
+
libgpiod,pkg:generic/[email protected]?source_hash=1473d3035b506065393a4569763cf6b5c98e59c8f865326374ebadffa2578f3a
|
25 |
+
nng,pkg:generic/[email protected]?source_hash=f8b25ab86738864b1f2e3128e8badab581510fa8085ff5ca9bb980d317334c46
|
26 |
+
libunibreak,pkg:generic/[email protected]?source_hash=cc4de0099cf7ff05005ceabff4afed4c582a736abc38033e70fdac86335ce93f
|
27 |
+
spng,pkg:generic/[email protected]?source_hash=47ec02be6c0a6323044600a9221b049f63e1953faf816903e7383d4dc4234487
|
28 |
+
utf8proc,pkg:generic/[email protected]?source_hash=bd215d04313b5bc42c1abedbcb0a6574667e31acee1085543a232204e36384c4
|
29 |
+
tinyxml2,pkg:generic/[email protected]?source_hash=5556deb5081fb246ee92afae73efd943c889cef0cafea92b0b82422d6a18f289
|
30 |
+
libebml,pkg:generic/[email protected]?source_hash=86c99573cd0957884f26547d1a8fa0c979e4d6d57484dfd387345846e6720f49
|
31 |
+
trompeloeil,pkg:generic/trompeloeil@49?source_hash=2523571fb7920b2813cbc23b46e60294aba8ead7eba434bfec69c24408615593
|
32 |
+
nonstd-expected-lite,pkg:generic/[email protected]?source_hash=fc942ce0614e9498bff6f35f1ee8d58f83026bac904d9ab427a2e822b5bdfcbd
|
33 |
+
nanobind,pkg:generic/[email protected]?source_hash=bb35deaed7efac5029ed1e33880a415638352f757d49207a8e6013fefb6c49a7
|
34 |
+
lcms2,pkg:generic/[email protected]?source_hash=d11af569e42a1baa1650d20ad61d12e41af4fead4aa7964a01f93b08b53ab074
|
35 |
+
fdk-aac,pkg:generic/[email protected]?source_hash=829b6b89eef382409cda6857fd82af84fabb63417b08ede9ea7a553f811cb79e
|
36 |
+
entt,pkg:generic/[email protected]?source_hash=7cca2bd4d4aeef6c5bdbe06b9e047e7f2519ebaff901207cc81ac71a2bbe185e
|
37 |
+
sassc,pkg:generic/[email protected]?source_hash=608dc9002b45a91d11ed59e352469ecc05e4f58fc1259fc9a9f5b8f0f8348a03
|
38 |
+
zlib,pkg:generic/[email protected]?source_hash=9a93b2b7dfdac77ceba5a558a580e74667dd6fede4585b91eefb60f03b72df23
|
39 |
+
libupnp,pkg:generic/[email protected]?source_hash=ee4b4f85aa00ce38b782cf480fa569a90c7ccb23b0a9a076073a2d0bd6227335
|
40 |
+
m4,pkg:generic/[email protected]?source_hash=63aede5c6d33b6d9b13511cd0be2cac046f2e70fd0a07aa9573a04a82783af96
|
41 |
+
cxxopts,pkg:generic/[email protected]?source_hash=9f43fa972532e5df6c5fd5ad0f5bac606cdec541ccaf1732463d8070bbb7f03b
|
42 |
+
zydis,pkg:generic/zydis@f6265fdcf35c86750627adddf833616399986570?source_hash=ae98d240b2db1868ab1efc41757e8d828e86c60adf8365176d8c6cd8b5fab70f
|
43 |
+
c-flags,pkg:generic/[email protected]?source_hash=095465ecc1a4abe5e811e19816304283c59470035a18cf58861dc83aec20b209
|
44 |
+
sqlite3,pkg:generic/sqlite-amalgamation@3490100?source_hash=6cebd1d8403fc58c30e93939b246f3e6e58d0765a5cd50546f16c00fd805d2c3
|
45 |
+
concurrentqueue,pkg:generic/[email protected]?source_hash=87fbc9884d60d0d4bf3462c18f4c0ee0a9311d0519341cac7cbd361c885e5281
|
46 |
+
jansson,pkg:generic/[email protected]?source_hash=fba956f27c6ae56ce6dfd52fbf9d20254aad42821f74fa52f83957625294afb9
|
47 |
+
pango,pkg:generic/[email protected]?source_hash=03b7afd7ed730bef651155cbfb5320556b8ef92b0dc04abbb9784dcd4057afe7
|
48 |
+
oatpp-sqlite,pkg:generic/[email protected]?source_hash=f3abd7b0b1ea49fd4882fcf074223fdc4a2c82e9a9429341c3be48dd6187ebfd
|
49 |
+
lua,pkg:generic/[email protected]?source_hash=7d5ea1b9cb6aa0b59ca3dde1c6adcb57ef83a1ba8e5432c0ecd06bf439b3ad88
|
50 |
+
sqlpp11,pkg:generic/[email protected]?source_hash=72e6d37c716cc45b38c3cf4541604f16224aaa3b511d1f1d0be0c49176c3be86
|
51 |
+
pcre2,pkg:generic/[email protected]?source_hash=21547f3516120c75597e5b30a992e27a592a31950b5140e7b8bfde3f192033c4
|
52 |
+
type_safe,pkg:generic/[email protected]?source_hash=a631d03c18c65726b3d1b7d41ac5806e9121367afe10dd2f408a2d75e144b734
|
53 |
+
pcg,pkg:generic/[email protected]?source_hash=25bb22f076e8c346fa28c2267ae3564b12122f1f4ab2d2a08ad8909dcd6319fd
|
54 |
+
asio,pkg:generic/[email protected]?source_hash=12e7bb4dada8bc1191de9d550a59ee658ce4e645ffc97c911c099ab4e8699d55
|
55 |
+
pybind11,pkg:generic/[email protected]?source_hash=b1e209c42b3a9ed74da3e0b25a4f4cd478d89d5efbb48f04b277df427faf6252
|
56 |
+
freeglut,pkg:generic/[email protected]?source_hash=3c0bcb915d9b180a97edaebd011b7a1de54583a838644dcd42bb0ea0c6f3eaec
|
57 |
+
expat,pkg:generic/[email protected]?source_hash=a695629dae047055b37d50a0ff4776d1d45d0a4c842cf4ccee158441f55ff7ee
|
58 |
+
enet,pkg:generic/[email protected]?source_hash=a38f0f194555d558533b8b15c0c478e946310022d0ec7b34334e19e4574dcedc
|
59 |
+
giflib,pkg:generic/[email protected]?source_hash=be7ffbd057cadebe2aa144542fd90c6838c6a083b5e8a9048b8ee3b66b29d5fb
|
60 |
+
libwebp,pkg:generic/[email protected]?source_hash=2a499607df669e40258e53d0ade8035ba4ec0175244869d1025d460562aa09b4
|
61 |
+
rang,pkg:generic/[email protected]?source_hash=8b42d9c33a6529a6c283a4f4c73c26326561ccc67fbb3e6a3225edd688b39973
|
62 |
+
orcus,pkg:generic/[email protected]?source_hash=69ed26a00d4aaa7688e62a6e003cbc81928521a45e96605e53365aa499719e39
|
63 |
+
libxrandr,pkg:generic/[email protected]?source_hash=8aea0ebe403d62330bb741ed595b53741acf45033d3bda1792f1d4cc3daee023
|
64 |
+
oatpp-openssl,pkg:generic/[email protected]?source_hash=add694cf6294e5cd8b8f4681e0425802f01d798b9d17e29cdb865448a6aa81c8
|
65 |
+
sqlitecpp,pkg:generic/[email protected]?source_hash=1f41ef7322da573fdfca95655bd1329282638b4d9d3dc16a48f4bad16008eda8
|
66 |
+
vo-aacenc,pkg:generic/[email protected]?source_hash=e51a7477a359f18df7c4f82d195dab4e14e7414cbd48cf79cc195fc446850f36
|
67 |
+
libsignal-protocol-c,pkg:generic/[email protected]?source_hash=c22e7690546e24d46210ca92dd808f17c3102e1344cd2f9a370136a96d22319d
|
68 |
+
glbinding,pkg:generic/[email protected]?source_hash=e035385dab8e9e687229e6b95b36c00bc0407669691913de5b63ca734e82b617
|
69 |
+
zycore,pkg:generic/[email protected]?source_hash=943f91eb9ab2a8cc01ab9f8b785e769a273502071e0ee8011cdfcaad93947cec
|
70 |
+
argparse,pkg:generic/[email protected]?source_hash=9dcb3d8ce0a41b2a48ac8baa54b51a9f1b6a2c52dd374e28cc713bab0568ec98
|
71 |
+
re2,pkg:generic/re2-2023-03@01?source_hash=7a9a4824958586980926a300b4717202485c4b4115ac031822e29aa4ef207e48
|
72 |
+
sdl2,pkg:generic/[email protected]?source_hash=c6ef64ca18a19d13df6eb22df9aff19fb0db65610a74cc81dae33a82235cacd4
|
73 |
+
google-snappy,pkg:generic/[email protected]?source_hash=75c1fbb3d618dd3a0483bff0e26d0a92b495bbe5059c8b4f1c962b478b6e06e7
|
74 |
+
mpark-patterns,pkg:generic/[email protected]?source_hash=80e6af808a4d74d5d7358666303eb1dbfc5582313ff9fa31d1c0d3280d3bd9e7
|
75 |
+
uthash,pkg:generic/[email protected]?source_hash=e10382ab75518bad8319eb922ad04f907cb20cccb451a3aa980c9d005e661acc
|
76 |
+
glib,pkg:generic/[email protected]?source_hash=f8823600cb85425e2815cfad82ea20fdaa538482ab74e7293d58b3f64a5aff6a
|
77 |
+
quickjs-ng,pkg:generic/[email protected]?source_hash=77f9e79b42e2e7cff9517bae612431af47e120730286cb1dcfad0753bc160f10
|
78 |
+
gdbm,pkg:generic/[email protected]?source_hash=695e9827fdf763513f133910bc7e6cfdb9187943a4fec943e57449723d2b8dbf
|
79 |
+
onqtam-doctest,pkg:generic/[email protected]?source_hash=f689f48e92c088928d88d8481e769c8e804f0a608b484ab8ef3d6ab6045b5444
|
80 |
+
libtomcrypt,pkg:generic/[email protected]?source_hash=96ad4c3b8336050993c5bc2cf6c057484f2b0f9f763448151567fbab5e767b84
|
81 |
+
libsigcplusplus-3,pkg:generic/[email protected]?source_hash=c3d23b37dfd6e39f2e09f091b77b1541fbfa17c4f0b6bf5c89baef7229080e17
|
82 |
+
libsass,pkg:generic/[email protected]?source_hash=f9484d9a6df60576e791566eab2f757a97fd414fce01dd41fc0a693ea5db2889
|
83 |
+
tclap,pkg:generic/[email protected]?source_hash=634c5b59dbb1ccbc9d6a5f6de494a257e29a3f59dcb6fc30445ff39b45188574
|
84 |
+
croaring,pkg:generic/[email protected]?source_hash=c4fccf6a8cfa6f15f47d0e6f6b202940c2305e3078eb745d25fe9e2739ae5278
|
85 |
+
wayland,pkg:generic/[email protected]?source_hash=864fb2a8399e2d0ec39d56e9d9b753c093775beadc6022ce81f441929a81e5ed
|
86 |
+
libyaml,pkg:generic/[email protected]?source_hash=c642ae9b75fee120b2d96c712538bd2cf283228d2337df2cf2988e3c02678ef4
|
87 |
+
tronkko-dirent,pkg:generic/[email protected]?source_hash=f72d39e3c39610b6901e391b140aa69b51e0eb99216939ed5e547b5dad03afb1
|
88 |
+
json-c,pkg:generic/[email protected]?source_hash=876ab046479166b869afc6896d288183bbc0e5843f141200c677b3e8dfb11724
|
89 |
+
termbox,pkg:generic/[email protected]?source_hash=61c9940b42b3ac44bf0cba67eacba75e3c02088b8c695149528c77def04d69b1
|
90 |
+
libxinerama,pkg:generic/[email protected]?source_hash=0008dbd7ecf717e1e507eed1856ab0d9cf946d03201b85d5dcf61489bb02d720
|
91 |
+
jbig2dec,pkg:generic/[email protected]?source_hash=a9705369a6633aba532693450ec802c562397e1b824662de809ede92f67aff21
|
92 |
+
abseil-cpp,pkg:generic/[email protected]?source_hash=f50e5ac311a81382da7fa75b97310e4b9006474f9560ac46f54a9967f07d4ae3
|
93 |
+
minizip-ng,pkg:generic/[email protected]?source_hash=a87f1f734f97095fe1ef0018217c149d53d0f78438bcb77af38adc21dff2dfbc
|
94 |
+
opencl-headers,pkg:generic/[email protected]?source_hash=159f2a550592bae49859fee83d372acd152328fdf95c0dcd8b9409f8fad5db93
|
95 |
+
opus,pkg:generic/[email protected]?source_hash=65c1d2f78b9f2fb20082c38cbe47c951ad5839345876e46941612ee87f9a7ce1
|
96 |
+
speexdsp,pkg:generic/[email protected]?source_hash=8c777343e4a6399569c72abc38a95b24db56882c83dbdb6c6424a5f4aeb54d3d
|
97 |
+
xtl,pkg:generic/[email protected]?source_hash=25a16958195f939e6fb7c8feccad89b3e450a18124be6aee119c69a1ee2b308c
|
98 |
+
openblas,pkg:generic/[email protected]?source_hash=f1003466ad074e9b0c8d421a204121100b0751c96fc6fcf3d1456bd12f8a00a1
|
99 |
+
eigen,pkg:generic/[email protected]?source_hash=b4c198460eba6f28d34894e3a5710998818515104d6e74e5cc331ce31e46e626
|
100 |
+
mujs,pkg:generic/[email protected]?source_hash=78a311ae4224400774cb09ef5baa2633c26971513f8b931d3224a0eb85b13e0b
|
101 |
+
libxslt,pkg:generic/[email protected]?source_hash=2a20ad621148339b0759c4d4e96719362dee64c9a096dbba625ba053846349f0
|
102 |
+
mpdecimal,pkg:generic/[email protected]?source_hash=9f9cd4c041f99b5c49ffb7b59d9f12d95b683d88585608aa56a6307667b2b21f
|
103 |
+
tl-expected,pkg:generic/[email protected]?source_hash=1db357f46dd2b24447156aaf970c4c40a793ef12a8a9c2ad9e096d9801368df6
|
104 |
+
rubberband,pkg:generic/[email protected]?source_hash=af050313ee63bc18b35b2e064e5dce05b276aaf6d1aa2b8a82ced1fe2f8028e9
|
105 |
+
pv,pkg:generic/[email protected]?source_hash=0cc18811a4809a587d4b11d47691bbc0ad83a5d95d2c2606af74ea7b4a674756
|
106 |
+
nonstd-observer-ptr-lite,pkg:generic/[email protected]?source_hash=812eafbdaccfb44ffd2536692b668cd1f16228e8d7609de56b60320c8c57cc67
|
107 |
+
libjpeg-turbo,pkg:generic/[email protected]?source_hash=9564c72b1dfd1d6fe6274c5f95a8d989b59854575d4bbee44ade7bc17aa9bc93
|
108 |
+
nanoarrow,pkg:generic/[email protected]?source_hash=e4a02ac51002ad1875bf09317e70adb959005fad52b240ff59f73b970fa485d1
|
109 |
+
jsoncpp,pkg:generic/[email protected]?source_hash=f93b6dd7ce796b13d02c108bc9f79812245a82e577581c4c9aabe57075c90ea2
|
110 |
+
cpputest,pkg:generic/[email protected]?source_hash=0b66d20661f232d2a6af124c4455c8ccc9a4ce72d29f6ad4877eb385faaf5108
|
111 |
+
xtensor,pkg:generic/[email protected]?source_hash=30cb896b6686683ddaefb12c98bf1109fdfe666136dd027aba1a1e9aa825c241
|
112 |
+
stduuid,pkg:generic/[email protected]?source_hash=b1176597e789531c38481acbbed2a6894ad419aab0979c10410d59eb0ebf40d3
|
113 |
+
tomlplusplus,pkg:generic/[email protected]?source_hash=8517f65938a4faae9ccf8ebb36631a38c1cadfb5efa85d9a72e15b9e97d25155
|
114 |
+
htslib,pkg:generic/[email protected]?source_hash=84b510e735f4963641f26fd88c8abdee81ff4cb62168310ae716636aac0f1823
|
115 |
+
slirp,pkg:generic/[email protected]?source_hash=e744a32767668fe80e3cb3bd75d10d501f981e98c26a1f318154a97e99cdac22
|
116 |
+
range-v3,pkg:generic/[email protected]?source_hash=015adb2300a98edfceaf0725beec3337f542af4915cec4d0b89fa0886f4ba9cb
|
117 |
+
cppzmq,pkg:generic/[email protected]?source_hash=c81c81bba8a7644c84932225f018b5088743a22999c6d82a2b5f5cd1e6942b74
|
118 |
+
bshoshany-thread-pool,pkg:generic/[email protected]?source_hash=d3e4be162c45ac784ac6fb2096f9494469571a3473a18829c2adae1aab67cfbc
|
119 |
+
arduinocore-avr,pkg:generic/avr?source_hash=6213d41c6e91a75ac931527da5b10f2dbe0140c8cc1dd41b06cd4e78b943f41b
|
120 |
+
imguizmo,pkg:generic/[email protected]?source_hash=e6d05c5ebde802df7f6c342a06bc675bd2aa1c754d2d96755399a182187098a8
|
121 |
+
nghttp2,pkg:generic/[email protected]?source_hash=2345d4dc136fda28ce243e0bb21f2e7e8ef6293d62c799abbf6f633a6887af72
|
122 |
+
debug_assert,pkg:generic/[email protected]?source_hash=6d8749eaa6b571b6b53e2355ed0e916a83842cd623ce7e5f65b521ec71b70454
|
123 |
+
sparrow,pkg:generic/[email protected]?source_hash=06f833cb3ada1f25edff912daf66c92d5ec5c8086f93bb085cb658e6f9db18d2
|
124 |
+
directxmath,pkg:generic/DirectXMath@feb2024?source_hash=f78bb400dcbedd987f2876b2fb6fe12199d795cd6a912f965ef3a2141c78303d
|
125 |
+
xxhash,pkg:generic/[email protected]?source_hash=aae608dfe8213dfd05d909a57718ef82f30722c392344583d3f39050c7f29a80
|
126 |
+
microsoft-gsl,pkg:generic/[email protected]?source_hash=eb91fcb10a6aa5ccb1d224e07a56c8ecffe9a1bb601fa1848276ec46a2200bfb
|
127 |
+
oatpp-swagger,pkg:generic/[email protected]?source_hash=4d8db6d73095a786a521a71e8ba6b535fea62237faaaa57d98257312627d3a45
|
128 |
+
nonstd-optional-lite,pkg:generic/[email protected]?source_hash=069c92f6404878588be761d609b917a111b0231633a91f7f908288fc77eb24c8
|
129 |
+
facil,pkg:generic/[email protected]?source_hash=dc004017093e1ae3838b8c2a281d77d7cc94a84e0f157d93740838fb61e26d47
|
130 |
+
fluidsynth,pkg:generic/[email protected]?source_hash=321f7d3f72206b2522f30a1cb8ad1936fd4533ffc4d29dd335b1953c9fb371e6
|
131 |
+
tabulate,pkg:generic/[email protected]?source_hash=16b289f46306283544bb593f4601e80d6ea51248fde52e910cc569ef08eba3fb
|
132 |
+
websocketpp,pkg:generic/[email protected]?source_hash=6ce889d85ecdc2d8fa07408d6787e7352510750daa66b5ad44aacb47bea76755
|
133 |
+
littlefs,pkg:generic/[email protected]?source_hash=620691695d65ad161eed1247122b63ad03e0251d8617864ba086a563afe98216
|
134 |
+
protobuf,pkg:generic/[email protected]?source_hash=8ff511a64fc46ee792d3fe49a5a1bcad6f7dc50dfbba5a28b0e5b979c17f9871
|
135 |
+
openh264,pkg:generic/[email protected]?source_hash=558544ad358283a7ab2930d69a9ceddf913f4a51ee9bf1bfb9e377322af81a69
|
136 |
+
libsndfile,pkg:generic/[email protected]?source_hash=3799ca9924d3125038880367bf1468e53a1b7e3686a934f098b7e1d286cdb80e
|
137 |
+
indicators,pkg:generic/[email protected]?source_hash=70da7a693ff7a6a283850ab6d62acf628eea17d386488af8918576d0760aef7b
|
138 |
+
vorbis,pkg:generic/[email protected]?source_hash=b33cc4934322bcbf6efcbacf49e3ca01aadbea4114ec9589d1b1e9d20f72954b
|
139 |
+
json-glib,pkg:generic/[email protected]?source_hash=77f4bcbf9339528f166b8073458693f0a20b77b7059dbc2db61746a1928b0293
|
140 |
+
luajit,pkg:generic/LuaJIT@04dca7911ea255f37be799c18d74c305b921c1a6?source_hash=346b028d9ba85e04b7e23a43cc51ec076574d2efc0d271d4355141b0145cd6e0
|
141 |
+
kraken-engine,pkg:generic/[email protected]?source_hash=3f081711b57d81b41a68d51e5e3d5c7fc8a9e0a98a4c0e410c50722cadbdb9f1
|
142 |
+
iir,pkg:generic/[email protected]?source_hash=de241ef7a3e5ae8e1309846fe820a2e18978aa3df3922bd83c2d75a0fcf4e78f
|
143 |
+
nativefiledialog-extended,pkg:generic/[email protected]?source_hash=443697a857c4efacbe08cdaf5182724fa9d9b9a79b8feff2a1601bde1df46b07
|
144 |
+
argtable3,pkg:generic/[email protected]?source_hash=a5c66d819fa0be0435f37ed2fb3f23e371091722ff74219de97b65f6b9914e51
|
145 |
+
glib-networking,pkg:generic/[email protected]?source_hash=b80e2874157cd55071f1b6710fa0b911d5ac5de106a9ee2a4c9c7bee61782f8e
|
146 |
+
cmock,pkg:generic/[email protected]?source_hash=02d1202bf52c6631e180b463887f75f281d68f8713689990a5ce0e4524d98b00
|
147 |
+
docopt,pkg:generic/[email protected]?source_hash=28af5a0c482c6d508d22b14d588a3b0bd9ff97135f99c2814a5aa3cbff1d6632
|
148 |
+
vulkan-headers,pkg:generic/[email protected]?source_hash=a76ff77815012c76abc9811215c2167128a73a697bcc23948e858d1f7dd54a85
|
149 |
+
yajl,pkg:generic/[email protected]?source_hash=3fb73364a5a30efe615046d07e6db9d09fd2b41c763c5f7d3bfb121cd5c5ac5a
|
150 |
+
google-brotli,pkg:generic/[email protected]?source_hash=e720a6ca29428b803f4ad165371771f5398faba397edf6778837a18599ea13ff
|
151 |
+
vulkan-memory-allocator,pkg:generic/[email protected]?source_hash=ae134ecc37c55634f108e926f85d5d887b670360e77cd107affaf3a9539595f2
|
152 |
+
emilk-loguru,pkg:generic/[email protected]?source_hash=1a3be62ebec5609af60b1e094109a93b7412198b896bb88f31dcfe4d95b79ce7
|
153 |
+
leptonica,pkg:generic/[email protected]?source_hash=2b3e1254b1cca381e77c819b59ca99774ff43530209b9aeb511e1d46588a64f6
|
154 |
+
pegtl,pkg:generic/[email protected]?source_hash=d6cd113d8bd14e98bcbe7b7f8fc1e1e33448dc359e8cd4cca30e034ec2f0642d
|
155 |
+
tl-optional,pkg:generic/[email protected]?source_hash=e18941da05bca12a796ebbeacb83993bc0f10e817fa10bb45124a421c2384690
|
156 |
+
catch,pkg:generic/[email protected]?source_hash=e93aacf012579093fe6b4e686ff0488975cabee1e6b4e4f27a0acd898e8f09fd
|
157 |
+
miniaudio,pkg:generic/[email protected]?source_hash=bcb07bfb27e6fa94d34da73ba2d5642d4940b208ec2a660dbf4e52e6b7cd492f
|
158 |
+
libuv,pkg:generic/[email protected]?source_hash=8d84f714f4cfd167b1576a58b82430cc2166ef135463d0644964fd71c61a6766
|
159 |
+
libnpupnp,pkg:generic/[email protected]?source_hash=1cc1222512d480826d2923cc7b98b7361183a2add8c6b646a7fa32c2f34b32b3
|
160 |
+
spdlog,pkg:generic/[email protected]?source_hash=25c843860f039a1600f232c6eb9e01e6627f7d030a2ae5e232bdd3c9205d26cc
|
161 |
+
quazip,pkg:generic/[email protected]?source_hash=79633fd3a18e2d11a7d5c40c4c79c1786ba0c74b59ad752e8429746fe1781dd6
|
162 |
+
openssl,pkg:generic/[email protected]?source_hash=6c13d2bf38fdf31eac3ce2a347073673f5d63263398f1f69d0df4a41253e4b3e
|
163 |
+
freetype2,pkg:generic/[email protected]?source_hash=0550350666d427c74daeb85d5ac7bb353acba5f76956395995311a9c6f063289
|
164 |
+
exiv2,pkg:generic/[email protected]?source_hash=e1671f744e379a87ba0c984617406fdf8c0ad0c594e5122f525b2fb7c28d394d
|
165 |
+
libxcursor,pkg:generic/[email protected]?source_hash=46c143731610bafd2070159a844571b287ac26192537d047a39df06155492104
|
166 |
+
flatbuffers,pkg:generic/[email protected]?source_hash=5d8bfbf5b1b4c47f516e7673677f0e8db0efd32f262f7a14c3fd5ff67e2bd8fc
|
167 |
+
taglib,pkg:generic/[email protected]?source_hash=0de288d7fe34ba133199fd8512f19cc1100196826eafcb67a33b224ec3a59737
|
168 |
+
json,pkg:generic/[email protected]?source_hash=2de558ff3b3b32eebfb51cf2ceb835a0fa5170e6b8712b02be9c2c07fcfe52a1
|
169 |
+
theora,pkg:generic/[email protected]?source_hash=b6ae1ee2fa3d42ac489287d3ec34c5885730b1296f0801ae577a35193d3affbc
|
170 |
+
fuse,pkg:generic/[email protected]?source_hash=e57a24721177c3b3dd71cb9239ca46b4dee283db9388d48f7ccd256184982194
|
171 |
+
glfw,pkg:generic/[email protected]?source_hash=4ff18a3377da465386374d8127e7b7349b685288cb8e17122f7e1179f73769d5
|
172 |
+
rapidjson,pkg:generic/[email protected]?source_hash=bf7ced29704a1e696fbccf2a2b4ea068e7774fa37f6d7dd4039d0787f8bed98e
|
173 |
+
reflex,pkg:generic/[email protected]?source_hash=550e371b3b52aad8836b0679ce0f6898f39cf4a6865651aa3f59b2201dd0740c
|
174 |
+
libopenjp2,pkg:generic/[email protected]?source_hash=368fe0468228e767433c9ebdea82ad9d801a3ad1e4234421f352c8b06e7aa707
|
175 |
+
libxext,pkg:generic/[email protected]?source_hash=db14c0c895c57ea33a8559de8cb2b93dc76c42ea4a39e294d175938a133d7bca
|
176 |
+
libarchive,pkg:generic/[email protected]?source_hash=879acd83c3399c7caaee73fe5f7418e06087ab2aaf40af3e99b9e29beb29faee
|
177 |
+
turtle,pkg:generic/[email protected]?source_hash=0551f0e5f19bcee5484a2dfeadd4b56f7142f89ed2a1839dd56ed2d594ef1d4c
|
178 |
+
pkgconf,pkg:generic/[email protected]?source_hash=51203d99ed573fa7344bf07ca626f10c7cc094e0846ac4aa0023bd0c83c25a41
|
179 |
+
uchardet,pkg:generic/[email protected]?source_hash=e97a60cfc00a1c147a674b097bb1422abd9fa78a2d9ce3f3fdcc2e78a34ac5f0
|
180 |
+
gdk-pixbuf,pkg:generic/[email protected]?source_hash=b9505b3445b9a7e48ced34760c3bcb73e966df3ac94c95a148cb669ab748e3c7
|
181 |
+
imgui-sfml,pkg:generic/[email protected]?source_hash=b1195ca1210dd46c8049cfc8cae7f31cd34f1591da7de1c56297b277ac9c5cc0
|
182 |
+
libpfm,pkg:generic/[email protected]?source_hash=d18b97764c755528c1051d376e33545d0eb60c6ebf85680436813fa5b04cc3d1
|
183 |
+
bzip2,pkg:generic/[email protected]?source_hash=ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269
|
184 |
+
blueprint-compiler,pkg:generic/[email protected]?source_hash=01feb8263fe7a450b0a9fed0fd54cf88947aaf00f86cc7da345f8b39a0e7bd30
|
185 |
+
x-plane-sdk,pkg:generic/[email protected]?source_hash=c1104e83d9b54b03d0084c1db52ee6491e5290994503e8dd2d4a0af637e2bdd7
|
186 |
+
ftxui,pkg:generic/[email protected]?source_hash=a2991cb222c944aee14397965d9f6b050245da849d8c5da7c72d112de2786b5b
|
187 |
+
cpp-httplib,pkg:generic/[email protected]?source_hash=c9b9e0524666e1cd088f0874c57c1ce7c0eaa8552f9f4e15c755d5201fc8c608
|
188 |
+
nowide,pkg:generic/nowide_standalone_v11.3.0?source_hash=153ac93173c8de9c08e7701e471fa750f84c27e51fe329570c5aa06016591f8c
|
189 |
+
cjson,pkg:generic/[email protected]?source_hash=3aa806844a03442c00769b83e99970be70fbef03735ff898f4811dd03b9f5ee5
|
190 |
+
proxy-libintl,pkg:generic/[email protected]?source_hash=13ef3eea0a3bc0df55293be368dfbcff5a8dd5f4759280f28e030d1494a5dffb
|
191 |
+
glew,pkg:generic/[email protected]?source_hash=d4fc82893cfb00109578d0a1a2337fb8ca335b3ceccf97b97e5cc7f08e4353e1
|
192 |
+
sparsehash-c11,pkg:generic/[email protected]?source_hash=d4a43cad1e27646ff0ef3a8ce3e18540dbcb1fdec6cc1d1cb9b5095a9ca2a755
|
193 |
+
libffi,pkg:generic/[email protected]?source_hash=b0dea9df23c863a7a50e825440f3ebffabd65df1497108e5d437747843895a4e
|
194 |
+
imgui,pkg:generic/[email protected]?source_hash=c5fbc5dcab1d46064001c3b84d7a88812985cde7e0e9ced03f5677bec1ba502a
|
195 |
+
sfml,pkg:generic/[email protected]?source_hash=15ff4d608a018f287c6a885db0a2da86ea389e516d2323629e4d4407a7ce047f
|
196 |
+
quill,pkg:generic/[email protected]?source_hash=17381f3ff19af9b1fb4e8ba83f4f3c9e3e54c4aea58353282f4d3ac3e9002224
|
197 |
+
icu,pkg:generic/icu?source_hash=dfacb46bfe4747410472ce3e1144bf28a102feeaa4e3875bac9b4c6cf30f4f3e
|
198 |
+
oatpp,pkg:generic/[email protected]?source_hash=e1f80fa8fd7a74da6737e7fee1a4db68b4d7085a3f40e7d550752d6ff5714583
|
199 |
+
nonstd-byte-lite,pkg:generic/[email protected]?source_hash=34221fba6800b3a5af4a17a274fc024afb2d49b3b4ec9ac61588305375891a20
|
200 |
+
lame,pkg:generic/[email protected]?source_hash=ddfe36cab873794038ae2c1210557ad34857a4b6bdc515785d1da9e175b1da1e
|
201 |
+
fribidi,pkg:generic/[email protected]?source_hash=1b1cde5b235d40479e91be2f0e88a309e3214c8ab470ec8a2744d82a5a9ea05c
|
202 |
+
miniz,pkg:generic/[email protected]?source_hash=ada38db0b703a56d3dd6d57bf84a9c5d664921d870d8fea4db153979fb5332c5
|
203 |
+
rxcpp,pkg:generic/[email protected]?source_hash=054a9be63e66904ecaa552ce56d6458b4545d6da5ea32f5103c7fc379cebb374
|
204 |
+
mdds,pkg:generic/[email protected]?source_hash=4b9b4ef83826562a57d55089141c8d59789fae829fd6402cbb95d480c0737b7d
|
205 |
+
ogg,pkg:generic/[email protected]?source_hash=c4d91be36fc8e54deae7575241e03f4211eb102afb3fc0775fbbc1b740016705
|
206 |
+
tinyply,pkg:generic/[email protected]?source_hash=1bb1462727a363f7b77a10e51cd023095db7b281d2f201167620a83e495513c6
|
207 |
+
libxv,pkg:generic/[email protected]?source_hash=d26c13eac99ac4504c532e8e76a1c8e4bd526471eb8a0a4ff2a88db60cb0b088
|
208 |
+
irepeat,pkg:generic/[email protected]?source_hash=ee128300512337ad5b9c5ec8c13138eb901fef61d3bf0aebb836d307bd2bbd14
|
209 |
+
c-ares,pkg:generic/[email protected]?source_hash=fa38dbed659ee4cc5a32df5e27deda575fa6852c79a72ba1af85de35a6ae222f
|
210 |
+
liblzma,pkg:generic/[email protected]?source_hash=f79a92b84101d19d76be833aecc93e68e56065b61ec737610964cd4f6c54ff2e
|
211 |
+
epoxy,pkg:generic/[email protected]?source_hash=a7ced37f4102b745ac86d6a70a9da399cc139ff168ba6b8002b4d8d43c900c15
|
212 |
+
cexception,pkg:generic/[email protected]?source_hash=641d26b32d1f92e7ec31bd5f1e86a1230e49b6a3eaaa181571ef1a5c9d2d22d1
|
213 |
+
nonstd-any-lite,pkg:generic/[email protected]?source_hash=945ac39f14273be742c8a060af100182e38920f641e5d8fa16699e74a09e9850
|
214 |
+
vulkan-validationlayers,pkg:generic/[email protected]?source_hash=9d7a6eba2db88b8af6457acce0b638324ca03cde2e9589ae96749114091c6e9e
|
215 |
+
qrencode,pkg:generic/[email protected]?source_hash=da448ed4f52aba6bcb0cd48cac0dd51b8692bccc4cd127431402fca6f8171e8e
|
216 |
+
libexif,pkg:generic/[email protected]?source_hash=d47564c433b733d83b6704c70477e0a4067811d184ec565258ac563d8223f6ae
|
217 |
+
libdicom,pkg:generic/[email protected]?source_hash=058bfaa7653c60a70798e021001d765e3f91ca4df5a8824b7604eaa57376449b
|
218 |
+
muellan-clipp,pkg:generic/[email protected]?source_hash=73da8e3d354fececdea99f7deb79d0343647349563ace3eafb7f4cca6e86e90b
|
219 |
+
libmicrohttpd,pkg:generic/[email protected]?source_hash=9e7023a151120060d2806a6ea4c13ca9933ece4eacfc5c9464d20edddb76b0a0
|
220 |
+
chipmunk,pkg:generic/[email protected]?source_hash=1e6f093812d6130e45bdf4cb80280cb3c93d1e1833d8cf989d554d7963b7899a
|
221 |
+
unity,pkg:generic/[email protected]?source_hash=b41a66d45a6b99758fb3202ace6178177014d52fc524bf1f72687d93e9867292
|
222 |
+
sdl2_mixer,pkg:generic/[email protected]?source_hash=8cdea810366decba3c33d32b8071bccd1c309b2499a54946d92b48e6922aa371
|
223 |
+
box2d,pkg:generic/[email protected]?source_hash=d6b4650ff897ee1ead27cf77a5933ea197cbeef6705638dd181adc2e816b23c2
|
224 |
+
cmocka,pkg:generic/[email protected]?source_hash=810570eb0b8d64804331f82b29ff47c790ce9cd6b163e98d47a4807047ecad82
|
225 |
+
bdwgc,pkg:generic/[email protected]?source_hash=7649020621cb26325e1fb5c8742590d92fb48ce5c259b502faf7d9fb5dabb160
|
226 |
+
tracy,pkg:generic/[email protected]?source_hash=a76017d928f3f2727540fb950edd3b736caa97b12dbb4e5edce66542cbea6600
|
227 |
+
flac,pkg:generic/[email protected]?source_hash=6c58e69cd22348f441b861092b825e591d0b822e106de6eb0ee4d05d27205b70
|
228 |
+
cpp-semver,pkg:generic/[email protected]?source_hash=05d59da347b5b5b4f34670d32704a54219657c9856a7af6645f06064006c6c68
|
229 |
+
ludocode-mpack,pkg:generic/[email protected]?source_hash=7e8dfc95266ac3e1a1a87383c01eb3bf66a61ae06374cf040b3383644bc8d2e6
|
230 |
+
cli11,pkg:generic/[email protected]?source_hash=17e02b4cddc2fa348e5dbdbb582c59a3486fa2b2433e70a0c3bacb871334fd55
|
231 |
+
dyninst,pkg:generic/[email protected]?source_hash=1bc48d26478b677a6c090c25586a447507bd1b4cf88d369bd61820005ce1be39
|
232 |
+
jbigkit,pkg:generic/[email protected]?source_hash=de7106b6bfaf495d6865c7dd7ac6ca1381bd12e0d81405ea81e7f2167263d932
|
233 |
+
sdl2_image,pkg:generic/[email protected]?source_hash=931c9be5bf1d7c8fae9b7dc157828b7eee874e23c7f24b44ba7eff6b4836312c
|
234 |
+
check,pkg:generic/[email protected]?source_hash=998d355294bb94072f40584272cf4424571c396c631620ce463f6ea97aa67d2e
|
235 |
+
sdl2_net,pkg:generic/[email protected]?source_hash=4e4a891988316271974ff4e9585ed1ef729a123d22c08bd473129179dc857feb
|
236 |
+
libxml2,pkg:generic/[email protected]?source_hash=f453480307524968f7a04ec65e64f2a83a825973bcd260a2e7691be82ae70c96
|
237 |
+
libtirpc,pkg:generic/[email protected]?source_hash=6474e98851d9f6f33871957ddee9714fdcd9d8a5ee9abb5a98d63ea2e60e12f3
|
238 |
+
libdrm,pkg:generic/[email protected]?source_hash=ac36293f61ca4aafaf4b16a2a7afff312aa4f5c37c9fbd797de9e3c0863ca379
|
239 |
+
tinyfsm,pkg:generic/[email protected]?source_hash=99aaad53ddb9b9b3fbb535a6983e9c86a0b8c8ef112181cddcb6f3857b440d09
|
240 |
+
hinnant-date,pkg:generic/[email protected]?source_hash=7a390f200f0ccd207e8cff6757e04817c1a0aec3e327b006b7eb451c57ee3538
|
241 |
+
sds,pkg:generic/[email protected]?source_hash=379c88d31bf9957006130c00671c28612a8647d5f38ff09cb75efb7abf08f6bb
|
242 |
+
soundtouch,pkg:generic/soundtouch?source_hash=ed714f84a3e748de87b24f385ec69d3bdc51ca47b7f4710d2048b84b2761e7ff
|
243 |
+
liblastfm,pkg:generic/[email protected]?source_hash=4b7ed7566737f7e253d1bd0c40e5d81e6cae599eace07c2a57e7a1e11b0769aa
|
244 |
+
tree-sitter,pkg:generic/[email protected]?source_hash=6bc22ca7e0f81d77773462d922cf40b44bfd090d92abac75cb37dbae516c2417
|
245 |
+
doctest,pkg:generic/[email protected]?source_hash=632ed2c05a7f53fa961381497bf8069093f0d6628c5f26286161fbd32a560186
|
246 |
+
lz4,pkg:generic/[email protected]?source_hash=537512904744b35e232912055ccf8ec66d768639ff3abe5788d90d792ec5f48b
|
247 |
+
lzo2,pkg:generic/[email protected]?source_hash=c0f892943208266f9b6543b3ae308fab6284c5c90e627931446fb49b4221a072
|
248 |
+
nonstd-span-lite,pkg:generic/[email protected]?source_hash=405ae095bca3c63da28c72a3528369b9ba3996f1992f3ae90fcb01a9d8bdef38
|
249 |
+
graphite2,pkg:generic/[email protected]?source_hash=f99d1c13aa5fa296898a181dff9b82fb25f6cc0933dbaa7a475d8109bd54209d
|
250 |
+
libwebsockets,pkg:generic/[email protected]?source_hash=6fd33527b410a37ebc91bb64ca51bdabab12b076bc99d153d7c5dd405e4bdf90
|
251 |
+
cairomm,pkg:generic/[email protected]?source_hash=b81255394e3ea8e8aa887276d22afa8985fc8daef60692eb2407d23049f03cfb
|
252 |
+
msgpackc-cxx,pkg:generic/[email protected]?source_hash=7504b7af7e7b9002ce529d4f941e1b7fb1fb435768780ce7da4abaac79bb156f
|
253 |
+
robin-map,pkg:generic/[email protected]?source_hash=a8424ad3b0affd4c57ed26f0f3d8a29604f0e1f2ef2089f497f614b1c94c7236
|
254 |
+
magic_enum,pkg:generic/[email protected]?source_hash=b403d3dad4ef542fdc3024fa37d3a6cedb4ad33c72e31b6d9bab89dcaf69edf7
|
255 |
+
libffmpegthumbnailer,pkg:generic/[email protected]?source_hash=8c9b9057c6cc8bce9d11701af224c8139c940f734c439a595525e073b09d19b8
|
256 |
+
nlohmann_json,pkg:generic/[email protected]?source_hash=a22461d13119ac5c78f205d3df1db13403e58ce1bb1794edc9313677313f4a9d
|
257 |
+
stc,pkg:generic/STC@4a76ff9bc961750b5d1932496f6b861e794f8178?source_hash=9c8cd0a2e99c82d584cc106376b027183331ad07a5f602422ece95dcea35c2dd
|
258 |
+
sdl2_ttf,pkg:generic/[email protected]?source_hash=78cdad51f3cc3ada6932b1bb6e914b33798ab970a1e817763f22ddbfd97d0c57
|
259 |
+
unittest-cpp,pkg:generic/[email protected]?source_hash=74852198877dc2fdebdc4e5e9bd074018bf8ee03a13de139bfe41f4585b2f5b9
|
260 |
+
libxxf86vm,pkg:generic/[email protected]?source_hash=afee27f93c5f31c0ad582852c0fb36d50e4de7cd585fcf655e278a633d85cd57
|
261 |
+
gee,pkg:generic/[email protected]?source_hash=1bf834f5e10d60cc6124d74ed3c1dd38da646787fbf7872220b8b4068e476d4d
|
262 |
+
gtest,pkg:generic/[email protected]?source_hash=7b42b4d6ed48810c5362c265a17faebe90dc2373c885e5216439d37927f02926
|
263 |
+
libobsd,pkg:generic/[email protected]?source_hash=332b72ba5f9a76c40f8a526771b78dae3ac3388f689f818c0ac4ab77ef52809d
|
264 |
+
cereal,pkg:generic/[email protected]?source_hash=16a7ad9b31ba5880dac55d62b5d6f243c3ebc8d46a3514149e56b5e7ea81f85f
|
265 |
+
libsrtp2,pkg:generic/[email protected]?source_hash=54facb1727a557c2a76b91194dcb2d0a453aaf8e2d0cbbf1e3c2848c323e28ad
|
266 |
+
sergiusthebest-plog,pkg:generic/[email protected]?source_hash=55a090fc2b46ab44d0dde562a91fe5fc15445a3caedfaedda89fe3925da4705a
|
267 |
+
dlfcn-win32,pkg:generic/[email protected]?source_hash=30a9f72bdf674857899eb7e553df1f0d362c5da2a576ae51f886e1171fbdb399
|
268 |
+
frozen,pkg:generic/[email protected]?source_hash=f7c7075750e8fceeac081e9ef01944f221b36d9725beac8681cbd2838d26be45
|
269 |
+
inih,pkg:generic/inih@r58?source_hash=e79216260d5dffe809bda840be48ab0eec7737b2bb9f02d2275c1b46344ea7b7
|
270 |
+
mocklibc,pkg:generic/[email protected]?source_hash=b2236a6af1028414783e9734a46ea051916ec226479d6a55a3bb823bff68f120
|
271 |
+
grpc,pkg:generic/[email protected]?source_hash=916f88a34f06b56432611aaa8c55befee96d0a7b7d7457733b9deeacbc016f99
|
272 |
+
cairo,pkg:generic/[email protected]?source_hash=445ed8208a6e4823de1226a74ca319d3600e83f6369f99b14265006599c32ccb
|
273 |
+
godot-cpp,pkg:generic/godot-cpp-godot-4.3@stable?source_hash=e6dfe8ee1ab3eeaadc9dba2dcb5ef39c4a99635986148fa893ce5c414153743f
|
274 |
+
libxrender,pkg:generic/[email protected]?source_hash=c06d5979f86e64cabbde57c223938db0b939dff49fdb5a793a1d3d0396650949
|
275 |
+
cglm,pkg:generic/[email protected]?source_hash=be5e7d384561eb0fca59724a92b7fb44bf03e588a7eae5123a7d796002928184
|
276 |
+
nonstd-status-value-lite,pkg:generic/[email protected]?source_hash=adcc9f3938b7805c1c465b5cde4e96143e126e7ddbccc00a53b452a8cc4d8ba8
|
277 |
+
rtaudio,pkg:generic/[email protected]?source_hash=42d29cc2b5fa378ba3a978faeb1885a0075acf0fecb5ee50f0d76f6c7d8ab28c
|
278 |
+
glpk,pkg:generic/[email protected]?source_hash=4a1013eebb50f728fc601bdd833b0b2870333c3b3e5a816eeba921d95bec6f15
|
279 |
+
libmatroska,pkg:generic/[email protected]?source_hash=64763443947833e6c17f1f555f4bb0df6c9f91881810d9d5e0f0bad3622d308b
|
280 |
+
hedley,pkg:generic/hedley@15?source_hash=e91c71b58f59d08c7b8289be8f687866863d934dfaa528e4be30b178139ae863
|
281 |
+
mt32emu,pkg:generic/munt@libmt32emu_2_7_1?source_hash=e4524d52d6799a4e32a961a2e92074f14adcb2f110a4e7a06bede77050cfdaf4
|
282 |
+
openal-soft,pkg:generic/[email protected]?source_hash=e1b6ec960e00bfed3d480330274b0f102dc10e4ae0dbb70fd9db80d6978165b1
|
283 |
+
zpp_bits,pkg:generic/[email protected]?source_hash=eff8bf4507f26e670ddf760374c9b691abf501426c468b5fd938cc8d53985153
|
284 |
+
utfcpp,pkg:generic/[email protected]?source_hash=6920a6a5d6a04b9a89b2a89af7132f8acefd46e0c2a7b190350539e9213816c0
|
285 |
+
catch2,pkg:generic/[email protected]?source_hash=1ab2de20460d4641553addfdfe6acd4109d871d5531f8f519a52ea4926303087
|
286 |
+
oatpp-websocket,pkg:generic/[email protected]?source_hash=8215765238c595e296c9ea961670064ff9c44e3e0f9accda59d81b10cc29873b
|
287 |
+
libtiff,pkg:generic/[email protected]?source_hash=273a0a73b1f0bed640afee4a5df0337357ced5b53d3d5d1c405b936501f71017
|
288 |
+
ff-nvcodec-headers,pkg:generic/[email protected]?source_hash=a28cdde3ac0e9e02c2dde7a1b4de5333b4ac6148a8332ca712da243a3361a0d9
|
289 |
+
zlib-ng,pkg:generic/[email protected]?source_hash=a73343c3093e5cdc50d9377997c3815b878fd110bf6511c2c7759f2afb90f5a3
|
290 |
+
curl,pkg:generic/[email protected]?source_hash=73a4b0e99596a09fa5924a4fb7e4b995a85fda0d18a2c02ab9cf134bebce04ee
|
291 |
+
libccp4c,pkg:generic/[email protected]?source_hash=cb813ae86612a0866329deab7cee96eac573d81be5b240341d40f9ad5322ff2d
|
292 |
+
cpr,pkg:generic/[email protected]?source_hash=e84b8ef348f41072609f53aab05bdaab24bf5916c62d99651dfbeaf282a8e0a2
|
293 |
+
gumbo-parser,pkg:generic/gumbo@parser?source_hash=c0bb5354e46539680724d638dbea07296b797229a7e965b13305c930ddc10d82
|
294 |
+
glm,pkg:generic/[email protected]?source_hash=9f3174561fd26904b23f0db5e560971cbf9b3cbda0b280f04d5c379d03bf234c
|
295 |
+
pcre,pkg:generic/[email protected]?source_hash=4dae6fdcd2bb0bb6c37b5f97c33c2be954da743985369cddac3546e3218bffb8
|
296 |
+
harfbuzz,pkg:generic/[email protected]?source_hash=480b6d25014169300669aa1fc39fb356c142d5028324ea52b3a27648b9beaad8
|
297 |
+
liblbfgs,pkg:generic/[email protected]?source_hash=95c1997e6c215c58738f5f723ca225d64c8070056081a23d636160ff2169bd2f
|
298 |
+
centurion,pkg:generic/[email protected]?source_hash=b607a27d17c25d412ef1a6e1db32c527b0cfef1712f0128361abb18624c7d03e
|
299 |
+
argu-parser,pkg:generic/[email protected]?source_hash=bb9c773364848baab62fbcfbfd10a2acb3beb8051d02fef93e93071959bbc396
|
300 |
+
fmt,pkg:generic/[email protected]?source_hash=482eed9efbc98388dbaee5cb5f368be5eca4893456bb358c18b7ff71f835ae43
|
301 |
+
backward-cpp,pkg:generic/[email protected]?source_hash=c654d0923d43f1cea23d086729673498e4741fb2457e806cfaeaea7b20c97c10
|
302 |
+
libliftoff,pkg:generic/[email protected]?source_hash=3309218c3137a70faada653690802b514e4e46d9b38e7d9d5948ffcc4831f3b1
|
303 |
+
netstring-c,pkg:generic/netstring-c@92104d314ad885fd444b70bffd12a2963ef37a2f?source_hash=233bf6c0a9c8516139bb3b4c80ab4345e47e423c28039f3c85aeefd69d3a8fbf
|
304 |
+
unit-system,pkg:generic/[email protected]?source_hash=aa7a7e3a49d98cf571f23bec4b6a38f0a351f822667329a9a271689b81407610
|
305 |
+
oatpp-zlib,pkg:generic/[email protected]?source_hash=6103b041a424b280e7de1f7ae75404f770049750044531f8d41ec4bafaa9497f
|
306 |
+
catchorg-clara,pkg:generic/[email protected]?source_hash=767dc1718e53678cbea00977adcd0a8a195802a505aec3c537664cf25a173142
|
307 |
+
cwalk,pkg:generic/[email protected]?source_hash=54f160031687ec90a414e0656cf6266445207cb91b720dacf7a7c415d6bc7108
|
308 |
+
pixman,pkg:generic/[email protected]?source_hash=6349061ce1a338ab6952b92194d1b0377472244208d47ff25bef86fc71973466
|
309 |
+
liblangtag,pkg:generic/[email protected]?source_hash=5ed6bcd4ae3f3c05c912e62f216cd1a44123846147f729a49fb5668da51e030e
|
310 |
+
pciaccess,pkg:generic/[email protected]?source_hash=4af43444b38adb5545d0ed1c2ce46d9608cc47b31c2387fc5181656765a6fa76
|
311 |
+
orocos_kdl,pkg:generic/[email protected]?source_hash=5acb90acd82b10971717aca6c17874390762ecdaa3a8e4db04984ea1d4a2af9b
|
312 |
+
libpsl,pkg:generic/[email protected]?source_hash=1dcc9ceae8b128f3c0b3f654decd0e1e891afc6ff81098f227ef260449dae208
|
313 |
+
qarchive,pkg:generic/[email protected]?source_hash=53bc9633e4e75d01d7ae6ff925fd111fc4951f922f74b37d652df51c0eb4aa30
|
314 |
+
physfs,pkg:generic/[email protected]?source_hash=18adad9a2d5e165a709588d1d942d73e3ffcb0495244b108cfe402690489990c
|
315 |
+
implot,pkg:generic/[email protected]?source_hash=24f772c688f6b8a6e19d7efc10e4923a04a915f13d487b08b83553aa62ae1708
|
316 |
+
google-benchmark,pkg:generic/[email protected]?source_hash=3e7059b6b11fb1bbe28e33e02519398ca94c1818874ebed18e504dc6f709be45
|
docs/schema.png
ADDED
![]() |
Git LFS Details
|
docs/vcpkg-projects.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|