rusqlite/Cargo.toml

81 lines
2.2 KiB
TOML
Raw Normal View History

2014-10-20 07:56:41 +08:00
[package]
name = "rusqlite"
2018-12-17 01:15:58 +08:00
version = "0.16.0"
2014-10-20 07:56:41 +08:00
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
2018-10-31 03:11:35 +08:00
edition = "2018"
2014-11-21 22:48:57 +08:00
description = "Ergonomic wrapper for SQLite"
2015-02-24 10:54:46 +08:00
repository = "https://github.com/jgallagher/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]
travis-ci = { repository = "jgallagher/rusqlite" }
appveyor = { repository = "jgallagher/rusqlite" }
2018-08-26 13:23:41 +08:00
maintenance = { status = "actively-developed" }
2014-10-20 07:56:41 +08:00
[lib]
name = "rusqlite"
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"]
# 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"]
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"]
# xShadowName: 3.26.0
vtab_v3 = ["vtab"]
2018-05-01 04:09:41 +08:00
csvtab = ["csv", "vtab"]
# pointer passing interfaces: 3.20.0
array = ["vtab"]
2015-02-24 08:52:48 +08:00
[dependencies]
time = "0.1.0"
bitflags = "1.0"
2016-12-04 17:17:53 +08:00
lru-cache = "0.1"
chrono = { version = "0.4", optional = true }
serde_json = { version = "1.0", optional = true }
2018-05-13 18:21:58 +08:00
csv = { version = "1.0", optional = true }
2018-07-15 00:47:52 +08:00
lazy_static = { version = "1.0", optional = true }
byteorder = { version = "1.2", features = ["i128"], optional = true }
[dev-dependencies]
2016-09-18 19:37:41 +08:00
tempdir = "0.3"
lazy_static = "1.0"
2018-05-03 00:21:35 +08:00
regex = "1.0"
[dependencies.libsqlite3-sys]
path = "libsqlite3-sys"
2019-01-06 17:02:43 +08:00
version = "0.12"
[[test]]
name = "config_log"
harness = false
[[test]]
name = "deny_single_threaded_sqlite_config"
[[test]]
name = "vtab"
[package.metadata.docs.rs]
2018-07-15 00:47:52 +08:00
features = [ "backup", "blob", "chrono", "functions", "limits", "load_extension", "serde_json", "trace", "vtab" ]
all-features = false
no-default-features = true
default-target = "x86_64-unknown-linux-gnu"