mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Reword bundled explanation in readme
This commit is contained in:
parent
74e4fa008e
commit
c9aa11301b
15
README.md
15
README.md
@ -17,13 +17,14 @@ In your Cargo.toml:
|
|||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# `bundled` causes us to automatically compile and link in an up to date
|
# `bundled` causes us to automatically compile and link in an up to date
|
||||||
# version of SQLite for you, which avoids many common build issues, and
|
# version of SQLite for you. This avoids many common build issues, and
|
||||||
# avoids depending on the version of SQLite on the users system, which may
|
# avoids depending on the version of SQLite on the users system (or your
|
||||||
# be old or missing. However, it's not ideal for all scenarios and in
|
# system), which may be old or missing. It's the right choice for most
|
||||||
# particular, generic libraries built around `rusqlite` should probably
|
# programs that control their own SQLite databases.
|
||||||
# not enable it; it's a choice that should *usually* be left up to
|
#
|
||||||
# the application that actually manages the database, which is why it
|
# That said, it's not ideal for all scenarios and in particular, generic
|
||||||
# is not a default feature.
|
# libraries built around `rusqlite` should probably not enable it, which
|
||||||
|
# is why it is not a default feature -- it could become hard to disable.
|
||||||
rusqlite = { version = "0.27.0", features = ["bundled"] }
|
rusqlite = { version = "0.27.0", features = ["bundled"] }
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user