mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 09:09:19 +08:00
2c58b3f804
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)
18 lines
371 B
TOML
18 lines
371 B
TOML
[package]
|
|
name = "libsqlite3-sys"
|
|
version = "0.7.0"
|
|
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
|
repository = "https://github.com/jgallagher/rusqlite"
|
|
description = "Native bindings to the libsqlite3 library"
|
|
license = "MIT"
|
|
links = "sqlite3"
|
|
build = "build.rs"
|
|
|
|
[features]
|
|
bundled = []
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.21"
|
|
pkg-config = "0.3"
|
|
gcc = "0.3"
|