Crates.io | libsqlite3-hotbundle |
lib.rs | libsqlite3-hotbundle |
version | |
source | src |
created_at | 2024-12-14 21:54:05.316452 |
updated_at | 2025-01-17 19:19:28.73737 |
description | bundled libsqlite3 library |
homepage | |
repository | https://github.com/mumbleskates/libsqlite3-hotbundle |
max_upload_size | |
id | 1483457 |
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` |
size | 0 |
A fork of libsqlite3-sys
that bundles a more recent version of sqlite3.
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"
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.