rusqlite/Cargo.toml

51 lines
1.0 KiB
TOML
Raw Normal View History

2014-10-19 19:56:41 -04:00
[package]
name = "rusqlite"
2017-01-26 22:03:34 -05:00
version = "0.9.5"
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"
categories = ["database"]
[badges]
travis-ci = { repository = "jgallagher/rusqlite" }
appveyor = { repository = "jgallagher/rusqlite" }
2014-10-19 19:56:41 -04:00
[lib]
name = "rusqlite"
2015-02-23 19:52:48 -05:00
[features]
load_extension = []
backup = []
2015-08-01 18:51:02 +02:00
blob = []
functions = []
2015-08-01 18:58:04 +02:00
trace = []
bundled = ["libsqlite3-sys/bundled"]
2015-02-23 19:52:48 -05:00
[dependencies]
time = "0.1.0"
bitflags = "0.7"
lru-cache = "0.1.0"
libc = "0.2"
chrono = { version = "0.2", optional = true }
serde_json = { version = "0.9", optional = true }
[dev-dependencies]
tempdir = "0.3.4"
lazy_static = "0.2"
regex = "0.2"
[dependencies.libsqlite3-sys]
path = "libsqlite3-sys"
2017-01-23 20:18:08 -05:00
version = "0.6.1"
2015-08-02 12:07:49 +02:00
[[test]]
name = "config_log"
harness = false
[[test]]
name = "deny_single_threaded_sqlite_config"