Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ default = ["linkage"]

linkage = ["sqlite3-src"]
bundled = ["sqlite3-src/bundled"]
native = ["sqlite3-src/native"]

encryption = []

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ The following Cargo features are supported:
* `linkage` creates a dependency on `sqlite3-src`, which links to a suitable
SQLite library;
* `bundled` compiles SQLite from the source code, ignoring any libraries that
might already be installed; and
might already be installed;
* `native` compiles using the system-provided SQLite and does not fall back to
bundled sources.
* `encryption` enables bindings to the [SQLite Encryption Extension], which is
closed source and hence requires purchasing a license and installing SQLite
manually.
Expand Down
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
//! * `linkage` creates a dependency on `sqlite3-src`, which links to a suitable
//! SQLite library;
//! * `bundled` compiles SQLite from the source code, ignoring any libraries that
//! might already be installed; and
//! might already be installed;
//! * `native` compiles using the system-provided SQLite and does not fall back to
//! bundled sources.
//! * `encryption` enables bindings to the [SQLite Encryption Extension], which is
//! closed source and hence requires purchasing a license and installing SQLite
//! manually.
Expand Down