Skip to content
Open
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
3 changes: 3 additions & 0 deletions docs-src/0.6/src/guide/databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,13 @@ For *HotDog*, we're going to use Sqlite. *HotDog* is a very simple app and will

To add sqlite functionality to *HotDog*, we'll pull in the `rusqlite` crate. Note that `rusqlite` is only meant to be compiled on the server, so we'll feature gate it behind the `"server"` feature in our Cargo.toml.

If you are using a Windows system, you should use `features = ["bundled"]`, or you will get a link error.

```toml
[dependencies]
# ....
rusqlite = { version = "0.32.1", optional = true } # <--- add rusqlite
rusqlite = { version = "0.32.1", optional = true, features = ["bundled"] } # <--- if you are using a Windows system.

[features]
# ....
Expand Down