2014-10-20 07:56:41 +08:00
|
|
|
[package]
|
|
|
|
name = "rusqlite"
|
2016-06-15 22:34:13 +08:00
|
|
|
version = "0.7.4"
|
2014-10-20 07:56:41 +08:00
|
|
|
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
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"
|
2015-05-05 03:24:58 +08:00
|
|
|
documentation = "http://jgallagher.github.io/rusqlite/rusqlite/index.html"
|
2014-11-21 22:48:57 +08:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["sqlite", "database", "ffi"]
|
|
|
|
license = "MIT"
|
2014-10-20 07:56:41 +08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rusqlite"
|
2014-11-15 04:02:27 +08:00
|
|
|
|
2015-02-24 08:52:48 +08:00
|
|
|
[features]
|
2016-02-13 10:51:24 +08:00
|
|
|
load_extension = []
|
2015-12-09 13:19:59 +08:00
|
|
|
backup = []
|
2015-08-02 00:51:02 +08:00
|
|
|
blob = []
|
2015-08-09 15:52:53 +08:00
|
|
|
functions = []
|
2015-08-02 00:58:04 +08:00
|
|
|
trace = []
|
2016-06-15 22:34:13 +08:00
|
|
|
bundled = ["libsqlite3-sys/bundled"]
|
2015-02-24 08:52:48 +08:00
|
|
|
|
2014-11-21 22:52:44 +08:00
|
|
|
[dependencies]
|
2014-12-04 23:47:46 +08:00
|
|
|
time = "~0.1.0"
|
2016-05-17 00:36:48 +08:00
|
|
|
bitflags = "0.7"
|
2016-11-05 03:47:28 +08:00
|
|
|
lru-cache = "0.1.0"
|
2015-12-01 14:18:44 +08:00
|
|
|
libc = "~0.2"
|
2016-02-23 03:36:49 +08:00
|
|
|
chrono = { version = "~0.2", optional = true }
|
2016-02-26 02:06:37 +08:00
|
|
|
serde_json = { version = "0.6", optional = true }
|
2015-02-24 04:22:34 +08:00
|
|
|
|
2015-05-05 03:22:11 +08:00
|
|
|
[dev-dependencies]
|
|
|
|
tempdir = "~0.3.4"
|
2015-12-01 04:29:50 +08:00
|
|
|
lazy_static = "~0.1"
|
2015-08-09 19:06:23 +08:00
|
|
|
regex = "~0.1.41"
|
2015-05-05 03:22:11 +08:00
|
|
|
|
2015-02-24 04:22:34 +08:00
|
|
|
[dependencies.libsqlite3-sys]
|
|
|
|
path = "libsqlite3-sys"
|
2016-06-15 22:34:13 +08:00
|
|
|
version = "0.6.0"
|
2015-08-02 18:07:49 +08:00
|
|
|
|
2015-12-01 04:29:50 +08:00
|
|
|
[[test]]
|
|
|
|
name = "config_log"
|
|
|
|
harness = false
|
2015-12-17 12:33:56 +08:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "deny_single_threaded_sqlite_config"
|