You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
670 B
24 lines
670 B
[package]
|
|
cargo-toml-patch-comments = [
|
|
"remove features for building vendored sqlite3 and sqlcipher sources",
|
|
"drop Windows- and WASM-specific features",
|
|
"exclude files that are only useful for upstream development",
|
|
"drop unused support for sqlcipher",
|
|
]
|
|
|
|
[[package.extra-patches]]
|
|
number = 1
|
|
file = "0001-unconditionally-enable-building-with-bindgen-and-pkg.patch"
|
|
comments = ["unconditionally enable building with bindgen and pkg-config"]
|
|
|
|
[requires]
|
|
build = ["pkgconfig(sqlite3) >= 3.7.16"]
|
|
lib = ["pkgconfig(sqlite3) >= 3.7.16"]
|
|
|
|
[scripts]
|
|
prep.post = [
|
|
"# * remove bundled copies of sqlite and sqlcipher",
|
|
"rm -vr sqlite3/ sqlcipher/",
|
|
]
|
|
|