comparison third_party/README.md @ 192:b818a4561a3c hg-web

Added AI genreated README.md. Needed to be read.
author MrJuneJune <me@mrjunejune.com>
date Sat, 24 Jan 2026 21:52:14 -0800
parents
children
comparison
equal deleted inserted replaced
191:a06710325c30 192:b818a4561a3c
1 # third_party
2
3 External dependencies and libraries.
4
5 ## Contents
6
7 | Directory | Description |
8 |-----------|-------------|
9 | `bun/` | Bun JavaScript runtime |
10 | `emsdk/` | Emscripten SDK for WASM compilation |
11 | `highlight/` | highlight.js for syntax highlighting |
12 | `libuv/` | Async I/O library |
13 | `luajit/` | LuaJIT interpreter |
14 | `raylib/` | Game/GUI library |
15 | `sqlite3/` | SQLite database |
16 | `wrk/` | HTTP benchmarking tool |
17
18 ## Usage
19
20 Reference in BUILD files:
21
22 ```starlark
23 deps = ["//third_party/sqlite3:sqlite3"]
24 deps = ["//third_party/raylib:raylib"]
25 deps = ["//third_party/libuv:libuv"]
26 ```