mirror of
https://github.com/isar/rusqlite.git
synced 2026-01-01 00:12:24 +08:00
Remove the dependency on libc
Recent versions of bindgen use `std::os::raw` over `libc`, but currently `libsqlite3-sys` is overriding that. `std::os::raw` is a subset of `libc` that exports only the relevant type definitions, but not any functions which require additional linking. This enables `libsqlite3-sys` to be more easily used on targets that may not have a libc available (presumably sqlite itself would have been compiled with musl in that case)
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
* Clarifies supported SQLite versions. Running with SQLite older than 3.6.8 now panics, and
|
||||
some features will not compile unless a sufficiently-recent SQLite version is used. See
|
||||
the README for requirements of particular features.
|
||||
* Removes the `libc` dependency in favor of using `std::os::raw`
|
||||
|
||||
# Version 0.9.5 (2017-01-26)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user