docs: add tip about lzma linking (#1397)

Similar to https://github.com/lancedb/lance/pull/2505
This commit is contained in:
Will Jones
2024-06-25 08:20:31 -07:00
committed by GitHub
parent 4b71552b73
commit c7d37b3e6e

View File

@@ -6,3 +6,12 @@
LanceDB Rust SDK, a serverless vector database.
Read more at: https://lancedb.com/
> [!TIP]
> A transitive dependency of `lancedb` is `lzma-sys`, which uses dynamic linking
> by default. If you want to statically link `lzma-sys`, you should activate it's
> `static` feature by adding the following to your dependencies:
>
> ```toml
> lzma-sys = { version = "*", features = ["static"] }
> ```