| Crates.io | squire |
| lib.rs | squire |
| version | 0.0.1-alpha.1 |
| created_at | 2025-09-05 07:21:43.869528+00 |
| updated_at | 2025-09-05 07:21:43.869528+00 |
| description | Safe and idiomatic SQLite bindings |
| homepage | |
| repository | https://github.com/silverlyra/squire |
| max_upload_size | |
| id | 1825203 |
| size | 90,995 |
Squire is a crate for embedding SQLite in Rust. It provides a safe, idiomatic Rust interface to the underlying SQLite C API.
use squire::{Connection, Database};
let db = Database::memory();
let connection = Connection::open(db)?;
let connection = Connection::builder(Database::memory()).open()?;