From c08d23b10db04fd7a8f4b021ac991bee636a487d Mon Sep 17 00:00:00 2001 From: Pedro Muniz <63058033+pedrocarlo@users.noreply.github.com> Date: Fri, 8 Aug 2025 01:01:06 -0300 Subject: [PATCH] Update extensions/core/README.md Co-authored-by: Preston Thorpe --- extensions/core/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/core/README.md b/extensions/core/README.md index de7dedb6d..ee87037e4 100644 --- a/extensions/core/README.md +++ b/extensions/core/README.md @@ -4,7 +4,7 @@ The `turso_ext` crate simplifies the creation and registration of libraries mean like traditional `sqlite3` extensions, but are able to be written in much more ergonomic Rust. **Attention** -If you wish to dynamic linking, currently you need to set your global_allocator to `MiMalloc` for non-wasm targets. Or you can clone the repo and change `macros/src/ext/mod.rs` to use your custom allocator: +If you wish to link with extensions dynamically, you will need to coordinate the allocator with each extension you would like to load at runtime by either using `MiMalloc` (the default) or setting your global allocator of choice in `macros/src/ext/mod.rs`. E.g ```diff