Adding rusqlite library as a dependency

Run this command in a terminal, in your project's directory:

cargo add rusqlite

To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:

rusqlite = "0.38.0"

The rusqlite library will be automatically available globally. Read the rusqlite library documentation.

Back to the crate overview.