2014-10-19 19:56:41 -04:00
|
|
|
[package]
|
|
|
|
name = "rusqlite"
|
2015-12-17 00:16:30 -05:00
|
|
|
version = "0.6.0"
|
2014-10-19 19:56:41 -04:00
|
|
|
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
2014-11-21 09:48:57 -05:00
|
|
|
description = "Ergonomic wrapper for SQLite"
|
2015-02-23 21:54:46 -05:00
|
|
|
repository = "https://github.com/jgallagher/rusqlite"
|
2015-05-04 21:24:58 +02:00
|
|
|
documentation = "http://jgallagher.github.io/rusqlite/rusqlite/index.html"
|
2014-11-21 09:48:57 -05:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["sqlite", "database", "ffi"]
|
|
|
|
license = "MIT"
|
2014-10-19 19:56:41 -04:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rusqlite"
|
2014-11-14 15:02:27 -05:00
|
|
|
|
2015-02-23 19:52:48 -05:00
|
|
|
[features]
|
2016-02-13 10:51:24 +08:00
|
|
|
load_extension = []
|
2015-12-09 00:19:59 -05:00
|
|
|
backup = []
|
2015-08-01 18:51:02 +02:00
|
|
|
blob = []
|
2015-08-09 09:52:53 +02:00
|
|
|
functions = []
|
2015-08-01 18:58:04 +02:00
|
|
|
trace = []
|
2016-01-10 20:56:04 +01:00
|
|
|
vtab = []
|
2016-02-08 18:06:11 +01:00
|
|
|
csvtab = ["csv"]
|
2015-02-23 19:52:48 -05:00
|
|
|
|
2014-11-21 09:52:44 -05:00
|
|
|
[dependencies]
|
2014-12-04 10:47:46 -05:00
|
|
|
time = "~0.1.0"
|
2015-01-20 10:03:09 -05:00
|
|
|
bitflags = "~0.1"
|
2015-12-01 06:18:44 +00:00
|
|
|
libc = "~0.2"
|
2016-03-29 11:54:02 -04:00
|
|
|
clippy = {version = "~0.0.58", optional = true}
|
2015-02-23 15:22:34 -05:00
|
|
|
|
2015-05-04 21:22:11 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
tempdir = "~0.3.4"
|
2015-11-30 15:29:50 -05:00
|
|
|
lazy_static = "~0.1"
|
2015-08-09 13:06:23 +02:00
|
|
|
regex = "~0.1.41"
|
2015-05-04 21:22:11 +02:00
|
|
|
|
2015-02-23 15:22:34 -05:00
|
|
|
[dependencies.libsqlite3-sys]
|
|
|
|
path = "libsqlite3-sys"
|
2015-12-17 00:16:30 -05:00
|
|
|
version = "0.4.0"
|
2015-11-30 15:29:50 -05:00
|
|
|
|
2016-02-08 18:06:11 +01:00
|
|
|
[dependencies.csv]
|
|
|
|
version = "~0.14.3"
|
|
|
|
optional = true
|
|
|
|
|
2015-11-30 15:29:50 -05:00
|
|
|
[[test]]
|
|
|
|
name = "config_log"
|
|
|
|
harness = false
|
2015-12-16 23:33:56 -05:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "deny_single_threaded_sqlite_config"
|