Crates.io | sqlite-tiny |
lib.rs | sqlite-tiny |
version | |
source | src |
created_at | 2024-02-19 00:11:41.299474 |
updated_at | 2024-12-06 19:57:20.994411 |
description | A minimalistic SQLite crate which ships the amalgamation variant and provides a tiny Rust API |
homepage | |
repository | https://github.com/KizzyCode/sqlite-tiny-rust |
max_upload_size | |
id | 1144543 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
sqlite-tiny
Welcome to sqlite-tiny
🎉
This crate is minimalistic SQLite library crate which ships the amalgamation variant and provides a tiny Rust API. If
you just want the embedded SQLite library plus the generated C bindings, you can disable the api
-feature (enabled by
default).
For the sake of simplicity, this crate operates under the following assumption: malloc
is cheap. To keep the code
clean and readable, we are quite liberal with allocating memory and copying data to avoid overly complex life-time
juggling.
Some locations where we do this are (non-exhaustive):
For simplicity, this crate does not link to external SQLite versions, but exclusively builds and embeds the amalgamation
in the dist
-folder. For more information see dist/README.md
.