mirror of
https://github.com/isar/rusqlite.git
synced 2025-12-29 23:12:27 +08:00
Add bundle-sqlcipher and bundle-ssl (#860)
Co-authored-by: Thom Chiovoloni <chiovolonit@gmail.com>
This commit is contained in:
16
Cargo.toml
16
Cargo.toml
@@ -34,6 +34,8 @@ functions = ["libsqlite3-sys/min_sqlite_version_3_7_7"]
|
||||
# sqlite3_log: 3.6.23 (2010-03-09)
|
||||
trace = ["libsqlite3-sys/min_sqlite_version_3_6_23"]
|
||||
bundled = ["libsqlite3-sys/bundled", "modern_sqlite"]
|
||||
bundled-sqlcipher = ["libsqlite3-sys/bundled-sqlcipher", "bundled"]
|
||||
bundled-sqlcipher-vendored-openssl = ["libsqlite3-sys/bundled-sqlcipher-vendored-openssl", "bundled-sqlcipher"]
|
||||
buildtime_bindgen = ["libsqlite3-sys/buildtime_bindgen"]
|
||||
limits = []
|
||||
hooks = []
|
||||
@@ -62,15 +64,15 @@ column_decltype = []
|
||||
wasm32-wasi-vfs = ["libsqlite3-sys/wasm32-wasi-vfs"]
|
||||
winsqlite3 = ["libsqlite3-sys/winsqlite3"]
|
||||
|
||||
# Helper feature for enabling both `bundled` and most non-build-related
|
||||
# optional features or dependencies (except `session`). This is useful for
|
||||
# running tests / clippy / etc. New features and optional dependencies that
|
||||
# don't conflict with anything else should be added here.
|
||||
bundled-full = [
|
||||
# Helper feature for enabling most non-build-related optional features
|
||||
# or dependencies (except `session`). This is useful for running tests / clippy
|
||||
# / etc. New features and optional dependencies that don't conflict with anything
|
||||
# else should be added here.
|
||||
modern-full = [
|
||||
"array",
|
||||
"backup",
|
||||
"blob",
|
||||
"bundled",
|
||||
"modern_sqlite",
|
||||
"chrono",
|
||||
"collation",
|
||||
"column_decltype",
|
||||
@@ -94,6 +96,8 @@ bundled-full = [
|
||||
"window",
|
||||
]
|
||||
|
||||
bundled-full = ["modern-full", "bundled"]
|
||||
|
||||
[dependencies]
|
||||
time = { version = "0.2.23", optional = true }
|
||||
bitflags = "1.2"
|
||||
|
||||
Reference in New Issue
Block a user