From 9b8825bae507ec7967095314eaa36ebbafa07300 Mon Sep 17 00:00:00 2001 From: hanez Date: Thu, 4 Jun 2026 02:46:02 +0200 Subject: [PATCH] README update. No code changes. (0.42.1) --- README.md | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index cf71232..6691caa 100644 --- a/README.md +++ b/README.md @@ -191,25 +191,24 @@ Written primarily in Fun itself: Enabled via CMake flags, wrapping mature C libraries: -| Extension | Backend | -|--------------|-----------------| -| JSON | json-c | -| cURL | libcurl | -| SQLite | libsqlite3 | -| PCRE2 | libpcre2 | -| OpenSSL | libcrypto | -| INI | iniparser 4.2.6 | -| XML | libxml2 | -| PC/SC | libpcsclite | -| KCGI | libkcgi | -| Redis/Valkey | hiredis | +| Extension | Backend | +|---------------------------------------------------------------|-------------| +| [JSON](./web/documentation/extensions/json/json.md) | json-c | +| [cURL](./web/documentation/extensions/curl/curl.md) | libcurl | +| [SQLite](./web/documentation/extensions/sqlite/sqlite.md) | libsqlite3 | +| [PCRE2](./web/documentation/extensions/pcre2/pcre2.md) | libpcre2 | +| [OpenSSL](./web/documentation/extensions/openssl/openssl.md) | libcrypto | +| [INI](./web/documentation/extensions/ini/ini.md) | iniparser | +| [XML](./web/documentation/extensions/xml2/xml2.md) | libxml2 | +| [PC/SC](./web/documentation/extensions/pcsc/pcsc.md) | libpcsclite | +| [KCGI](./web/documentation/extensions/kcgi/kcgi.md) | libkcgi | +| [Redis/Valkey](./web/documentation/extensions/redis/redis.md) | hiredis | Some extensions also have a corresponding stdlib wrapper class (e.g., `JSON`, `INI`, `XML`, `PCSC`, `PCRE2`, `KCGI`). ## Quick start -
console
-$ git clone https://git.xw3.org/fun/fun.git
+
$ git clone https://git.xw3.org/fun/fun.git
 $ cd fun
 $ cmake -B build -DCMAKE_BUILD_TYPE=Release
 $ cmake --build build
@@ -218,10 +217,6 @@ fun> print("Hello, World!")
 Hello, World!
 fun> :quit
-### OpenSSL quickstart (MD5) - -See: [./web/documentation/extensions/openssl/openssl.md](./web/documentation/extensions/openssl/openssl.md) - ## Build Options - **`-DCMAKE_BUILD_TYPE=Debug`** — debug build with asserts