mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 16:29: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
|
||||
[dependencies]
|
||||
# `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
|
||||
# avoids depending on the version of SQLite on the users system, which may
|
||||
# be old or missing. However, it's not ideal for all scenarios and in
|
||||
# particular, generic libraries built around `rusqlite` should probably
|
||||
# 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
|
||||
# is not a default feature.
|
||||
# version of SQLite for you. This avoids many common build issues, and
|
||||
# avoids depending on the version of SQLite on the users system (or your
|
||||
# system), which may be old or missing. It's the right choice for most
|
||||
# programs that control their own SQLite databases.
|
||||
#
|
||||
# That said, it's not ideal for all scenarios and in particular, generic
|
||||
# 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"] }
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user