rusqlite/Cargo.toml

51 lines
960 B
TOML
Raw Normal View History

2014-10-20 07:56:41 +08:00
[package]
name = "rusqlite"
2016-06-02 09:06:56 +08:00
version = "0.7.3"
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"
2015-02-24 08:52:48 +08:00
[features]
load_extension = []
backup = []
2015-08-02 00:51:02 +08:00
blob = []
functions = []
2015-08-02 00:58:04 +08:00
trace = []
2016-01-11 03:56:04 +08:00
vtab = []
csvtab = ["csv"]
2015-02-24 08:52:48 +08:00
[dependencies]
2016-09-18 19:37:41 +08:00
time = "0.1"
bitflags = "0.7"
lru-cache = "0.0.7"
2016-09-18 19:37:41 +08:00
libc = "0.2"
chrono = { version = "0.2", optional = true }
2016-08-14 18:26:05 +08:00
serde_json = { version = "0.8", optional = true }
[dev-dependencies]
2016-09-18 19:37:41 +08:00
tempdir = "0.3"
lazy_static = "0.2"
regex = "0.1"
[dependencies.libsqlite3-sys]
path = "libsqlite3-sys"
version = "0.5.0"
[dependencies.csv]
2016-09-18 19:37:41 +08:00
version = "0.14"
optional = true
[[test]]
name = "config_log"
harness = false
[[test]]
name = "deny_single_threaded_sqlite_config"