mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Add snippet for enabling bundled features in Readme
This commit is contained in:
parent
cd824aeaee
commit
ffeb450766
@ -102,7 +102,12 @@ adjust this behavior in a couple of ways:
|
|||||||
[gcc](https://crates.io/crates/gcc) crate to compile SQLite from source and
|
[gcc](https://crates.io/crates/gcc) crate to compile SQLite from source and
|
||||||
link against that. This source is embedded in the `libsqlite3-sys` crate and
|
link against that. This source is embedded in the `libsqlite3-sys` crate and
|
||||||
is currently SQLite 3.17.0 (as of `rusqlite` 0.10.1 / `libsqlite3-sys`
|
is currently SQLite 3.17.0 (as of `rusqlite` 0.10.1 / `libsqlite3-sys`
|
||||||
0.7.1). This is probably the simplest solution to any build problems.
|
0.7.1). This is probably the simplest solution to any build problems. You can enable this by adding the following in your `Cargo.toml` file:
|
||||||
|
```
|
||||||
|
[dependencies.rusqlite]
|
||||||
|
version = "0.11.0"
|
||||||
|
features = ["bundled"]
|
||||||
|
```
|
||||||
* You can set the `SQLITE3_LIB_DIR` to point to directory containing the SQLite
|
* You can set the `SQLITE3_LIB_DIR` to point to directory containing the SQLite
|
||||||
library.
|
library.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user