rusqlite/Cargo.toml

156 lines
4.2 KiB
TOML
Raw Normal View History

2014-10-20 07:56:41 +08:00
[package]
name = "rusqlite"
version = "0.24.2"
2020-04-16 12:07:23 +08:00
authors = ["The rusqlite developers"]
2018-10-31 03:11:35 +08:00
edition = "2018"
2014-11-21 22:48:57 +08:00
description = "Ergonomic wrapper for SQLite"
2020-04-16 12:07:23 +08:00
repository = "https://github.com/rusqlite/rusqlite"
2016-08-30 02:22:58 +08:00
documentation = "http://docs.rs/rusqlite/"
2014-11-21 22:48:57 +08:00
readme = "README.md"
keywords = ["sqlite", "database", "ffi"]
license = "MIT"
categories = ["database"]
[badges]
2020-04-16 12:07:23 +08:00
travis-ci = { repository = "rusqlite/rusqlite" }
appveyor = { repository = "rusqlite/rusqlite" }
codecov = { repository = "rusqlite/rusqlite" }
2018-08-26 13:23:41 +08:00
maintenance = { status = "actively-developed" }
2014-10-20 07:56:41 +08:00
[lib]
name = "rusqlite"
2019-02-02 18:00:12 +08:00
[workspace]
members = ["libsqlite3-sys"]
2015-02-24 08:52:48 +08:00
[features]
load_extension = []
# hot-backup interface: 3.6.11 (2009-02-18)
backup = ["libsqlite3-sys/min_sqlite_version_3_6_23"]
# sqlite3_blob_reopen: 3.7.4
blob = ["libsqlite3-sys/min_sqlite_version_3_7_7"]
collation = []
# sqlite3_create_function_v2: 3.7.3 (2010-10-08)
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"]
buildtime_bindgen = ["libsqlite3-sys/buildtime_bindgen"]
2017-02-04 18:01:38 +08:00
limits = []
hooks = []
i128_blob = ["byteorder"]
2017-10-24 16:54:48 +08:00
sqlcipher = ["libsqlite3-sys/sqlcipher"]
2017-09-21 03:28:19 +08:00
unlock_notify = ["libsqlite3-sys/unlock_notify"]
# xSavepoint, xRelease and xRollbackTo: 3.7.7 (2011-06-23)
2018-07-15 00:47:52 +08:00
vtab = ["libsqlite3-sys/min_sqlite_version_3_7_7", "lazy_static"]
2018-05-01 04:09:41 +08:00
csvtab = ["csv", "vtab"]
# pointer passing interfaces: 3.20.0
array = ["vtab"]
# session extension: 3.13.0
session = ["libsqlite3-sys/session", "hooks"]
# window functions: 3.25.0
window = ["functions"]
# 3.9.0
series = ["vtab"]
# check for invalid query.
extra_check = []
modern_sqlite = ["libsqlite3-sys/bundled_bindings"]
in_gecko = ["modern_sqlite", "libsqlite3-sys/in_gecko"]
bundled-windows = ["libsqlite3-sys/bundled-windows"]
2020-04-16 17:38:40 +08:00
# Build bundled sqlite with -fsanitize=address
with-asan = ["libsqlite3-sys/with-asan"]
column_decltype = []
wasm32-wasi-vfs = ["libsqlite3-sys/wasm32-wasi-vfs"]
winsqlite3 = ["libsqlite3-sys/winsqlite3"]
2015-02-24 08:52:48 +08:00
# 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 = [
"array",
"backup",
"blob",
"bundled",
"chrono",
"collation",
"column_decltype",
"csvtab",
"extra_check",
"functions",
"hooks",
"i128_blob",
"limits",
"load_extension",
"serde_json",
"series",
# time v0.2 does not work with tarpaulin v0.14.0. See time-rs/time#265.
# Re-enable when time v0.3 is released with the fix.
# "time",
"trace",
"unlock_notify",
"url",
"uuid",
"vtab",
"window",
]
[dependencies]
2020-11-27 14:38:13 +08:00
time = { version = "0.2.23", optional = true }
2020-10-05 02:44:49 +08:00
bitflags = "1.2"
2020-10-07 22:23:47 +08:00
hashlink = "0.6"
chrono = { version = "0.4", optional = true }
serde_json = { version = "1.0", optional = true }
2020-10-05 02:44:49 +08:00
csv = { version = "1.1", optional = true }
url = { version = "2.1", optional = true }
lazy_static = { version = "1.4", optional = true }
byteorder = { version = "1.3", features = ["i128"], optional = true }
2019-03-20 03:56:13 +08:00
fallible-iterator = "0.2"
fallible-streaming-iterator = "0.1"
2020-10-05 02:44:49 +08:00
memchr = "2.3"
uuid = { version = "0.8", optional = true }
smallvec = "1.0"
[dev-dependencies]
2020-03-08 22:36:56 +08:00
doc-comment = "0.3"
tempfile = "3.1.0"
2020-10-05 02:44:49 +08:00
lazy_static = "1.4"
regex = "1.3"
uuid = { version = "0.8", features = ["v4"] }
2020-10-05 02:44:49 +08:00
unicase = "2.6.0"
# Use `bencher` over criterion becasue it builds much faster and we don't have
# many benchmarks
bencher = "0.1"
[dependencies.libsqlite3-sys]
path = "libsqlite3-sys"
version = "0.21.0"
[[test]]
name = "config_log"
harness = false
[[test]]
name = "deny_single_threaded_sqlite_config"
[[test]]
name = "vtab"
[[bench]]
name = "cache"
harness = false
2020-06-27 15:54:33 +08:00
[[bench]]
name = "exec"
harness = false
[package.metadata.docs.rs]
features = [ "array", "backup", "blob", "chrono", "collation", "functions", "limits", "load_extension", "serde_json", "time", "trace", "url", "vtab", "window", "modern_sqlite", "column_decltype" ]
all-features = false
no-default-features = true
default-target = "x86_64-unknown-linux-gnu"
[package.metadata.playground]
features = ["bundled-full"]
all-features = false