Skip to main content
In this Rust quickstart we will learn how to:
  • Install the Turso crate
  • Connect to a local or remote database
  • Execute a query using SQL
  • Sync changes to the cloud
turso is the recommended crate for running a local database, including synchronizing it to and from Turso Cloud. It is built on the Turso Database engine — a ground-up rewrite of SQLite with concurrent writes (MVCC), async I/O, and native Rust async/await support.
1

Install

2

Connect

3

Sync (push and pull)

If you need to sync your local database with Turso Cloud, enable the sync feature:
All reads and writes happen against the local database file — fast, offline-capable. push() sends your changes to the cloud. pull() brings remote changes down. See the reference for checkpoint, stats, and encryption. See Turso Sync for details on conflict resolution and more.
You can test sync locally without a Turso Cloud account by starting a local sync server:
Then use http://127.0.0.1:8080 as the remote URL (no auth token needed). See Turso Database quickstart for how to install tursodb.

Remote Access (Over-the-Wire)

If your application needs to query a Turso Cloud database directly over the network (e.g., from a web server or serverless function), use the libsql crate with the remote feature. It connects over HTTP — no local file needed, no C compiler required.
For most applications, we recommend running a local database with sync (turso::sync) instead — it gives you faster reads, offline support, and lower latency. Remote access is useful when you cannot store a local database file (e.g., stateless serverless environments).
1

Retrieve database credentials

You will need an existing database to continue. If you don’t have one, create one.Get the database URL:
Get the database authentication token:
Assign credentials to the environment variables inside .env.
You will want to store these as environment variables.
2

Install

3

Connect and query

Using an ORM

Toasty, the async ORM from the Tokio project, has a native Turso driver. It speaks to the turso crate directly, so you get a typed model layer (#[derive(toasty::Model)], derived queries, relations) over the same Turso Database engine used in the quickstart above.
See the Toasty + Turso guide for the full walkthrough.

Embedded Replicas (libsql)

Embedded Replicas give your Rust app a local read copy of a Turso Cloud database. Reads are served locally; writes go to the cloud primary and are reflected back to the replica. Embedded Replicas are fully supported in production.For new projects that need sync, we recommend the turso crate with turso::sync: both reads and writes are local, you sync explicitly with push() / pull(), and the wire format is logical change-data-capture rather than page frames (benchmark).
See the reference for full documentation on Embedded Replicas with libsql.