libsqlite3-hotbundle

Crates.iolibsqlite3-hotbundle
lib.rslibsqlite3-hotbundle
version
sourcesrc
created_at2024-12-14 21:54:05.316452
updated_at2025-01-17 19:19:28.73737
descriptionbundled libsqlite3 library
homepage
repositoryhttps://github.com/mumbleskates/libsqlite3-hotbundle
max_upload_size
id1483457
Cargo.toml error:TOML parse error at line 21, column 1 | 21 | 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`
size0
Kent Ross (mumbleskates)

documentation

README

libsqlite3-hotbundle

A fork of libsqlite3-sys that bundles a more recent version of sqlite3.

Usage

In your Cargo.toml, include libsqlite3-hotbundle as a dependency alongside an application that otherwise uses libsqlite3-sys in non-bundled mode. The "hotbundle" will include a bundled version of the sqlite3 library that should then be chosen instead of the system's sqlite3 library or the version of the sqlite3 library that libsqlite3-sys would have bundled.

libsqlite3-hotbundle = "1.480000"
rusqlite = "0.32"

Versioning

This crate uses the sqlite release bundle versioning, which is a big number that is the whole sqlite3 library version strung together. A sqlite3 release numbered "3.45.6" would be numbered 3450600, which would become 1.450600.0 in this crate.

Commit count: 2543

cargo fmt