summaryrefslogtreecommitdiffstats
path: root/third_party/rust/libsqlite3-sys/Cargo.toml
blob: c8d40917ea0306d8ed176da55c896d13d8af8832 (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
100
101
102
103
104
105
106
107
108
109
110
# 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 = "2021"
name = "libsqlite3-sys"
version = "0.27.0"
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.69"
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.prettyplease]
version = "0.2"
optional = true

[build-dependencies.quote]
version = "1"
optional = true
default-features = false

[build-dependencies.syn]
version = "2.0"
features = [
    "full",
    "extra-traits",
    "visit-mut",
]
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_14_0"]
in_gecko = []
loadable_extension = [
    "prettyplease",
    "quote",
    "syn",
]
min_sqlite_version_3_14_0 = [
    "pkg-config",
    "vcpkg",
]
preupdate_hook = ["buildtime_bindgen"]
session = [
    "preupdate_hook",
    "buildtime_bindgen",
]
sqlcipher = []
unlock_notify = []
wasm32-wasi-vfs = []
winsqlite3 = []
with-asan = []