From 1db556eb2d0bb882e0d26d26472bd70914d984b5 Mon Sep 17 00:00:00 2001 From: gwenn Date: Sat, 6 Jan 2024 19:04:31 +0100 Subject: [PATCH] Add missing doc for new features --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 13db5ff..a505056 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,7 @@ features](https://doc.rust-lang.org/cargo/reference/manifest.html#the-features-s * [`load_extension`](https://docs.rs/rusqlite/~0/rusqlite/struct.LoadExtensionGuard.html) allows loading dynamic library-based SQLite extensions. +* `loadable_extension` to program [loadable extension](https://sqlite.org/loadext.html) in Rust. * [`backup`](https://docs.rs/rusqlite/~0/rusqlite/backup/index.html) allows use of SQLite's online backup API. Note: This feature requires SQLite 3.6.11 or later. * [`functions`](https://docs.rs/rusqlite/~0/rusqlite/functions/index.html) @@ -137,6 +138,7 @@ features](https://doc.rust-lang.org/cargo/reference/manifest.html#the-features-s * `column_decltype` provides `columns()` method for Statements and Rows; omit if linking to a version of SQLite/SQLCipher compiled with `-DSQLITE_OMIT_DECLTYPE`. * `collation` exposes [`sqlite3_create_collation_v2`](https://sqlite.org/c3ref/create_collation.html). * `winsqlite3` allows linking against the SQLite present in newer versions of Windows +* `serialize` exposes [`sqlite3_serialize`](http://sqlite.org/c3ref/serialize.html) (3.23.0). ## Notes on building rusqlite and libsqlite3-sys