1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)
[package]
edition = "2018"
name = "libsqlite3-sys"
version = "0.15.0"
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
build = "build.rs"
links = "sqlite3"
description = "Native bindings to the libsqlite3 library"
keywords = ["sqlite", "sqlcipher", "ffi"]
categories = ["external-ffi-bindings"]
license = "MIT"
repository = "https://github.com/jgallagher/rusqlite"
[build-dependencies.bindgen]
version = "0.49"
optional = true
[build-dependencies.cc]
version = "1.0"
optional = true
[build-dependencies.pkg-config]
version = "0.3"
optional = true
[features]
buildtime_bindgen = ["bindgen", "pkg-config", "vcpkg"]
bundled = ["cc"]
bundled-windows = ["cc"]
default = ["min_sqlite_version_3_6_8"]
min_sqlite_version_3_6_23 = ["pkg-config", "vcpkg"]
min_sqlite_version_3_6_8 = ["pkg-config", "vcpkg"]
min_sqlite_version_3_7_16 = ["pkg-config", "vcpkg"]
min_sqlite_version_3_7_7 = ["pkg-config", "vcpkg"]
preupdate_hook = []
session = ["preupdate_hook"]
sqlcipher = []
unlock_notify = []
[target."cfg(target_env = \"msvc\")".build-dependencies.vcpkg]
version = "0.2"
optional = true
|