summaryrefslogtreecommitdiffstats
path: root/third_party/rust/libsqlite3-sys/Cargo.toml
blob: 34130d77e5efa8ebbf6f10169b55ade789f314b9 (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# 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 are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "libsqlite3-sys"
version = "0.25.2"
authors = ["The rusqlite developers"]
build = "build.rs"
links = "sqlite3"
description = "Native bindings to the libsqlite3 library"
readme = "README.md"
keywords = [
    "sqlite",
    "sqlcipher",
    "ffi",
]
categories = ["external-ffi-bindings"]
license = "MIT"
repository = "https://github.com/rusqlite/rusqlite"

[dependencies.openssl-sys]
version = "0.9"
optional = true

[build-dependencies.bindgen]
version = "0.60"
features = ["runtime"]
optional = true
default-features = false

[build-dependencies.cc]
version = "1.0"
optional = true

[build-dependencies.pkg-config]
version = "0.3.19"
optional = true

[build-dependencies.vcpkg]
version = "0.2"
optional = true

[features]
buildtime_bindgen = [
    "bindgen",
    "pkg-config",
    "vcpkg",
]
bundled = [
    "cc",
    "bundled_bindings",
]
bundled-sqlcipher = ["bundled"]
bundled-sqlcipher-vendored-openssl = [
    "bundled-sqlcipher",
    "openssl-sys/vendored",
]
bundled-windows = [
    "cc",
    "bundled_bindings",
]
bundled_bindings = []
default = ["min_sqlite_version_3_6_8"]
in_gecko = []
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 = ["buildtime_bindgen"]
session = [
    "preupdate_hook",
    "buildtime_bindgen",
]
sqlcipher = []
unlock_notify = []
wasm32-wasi-vfs = []
winsqlite3 = ["min_sqlite_version_3_7_16"]
with-asan = []