rusqlite/Cargo.toml
John Gallagher a346361a25 Merge pull request #208 from jgallagher/cargo-categories-badges
Bump to 0.9.0 and add Cargo category and badges
2017-01-20 15:23:59 -05:00

51 lines
1.0 KiB
TOML

[package]
name = "rusqlite"
version = "0.9.0"
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
description = "Ergonomic wrapper for SQLite"
repository = "https://github.com/jgallagher/rusqlite"
documentation = "http://jgallagher.github.io/rusqlite/rusqlite/index.html"
readme = "README.md"
keywords = ["sqlite", "database", "ffi"]
license = "MIT"
categories = ["database"]
[badges]
travis-ci = { repository = "jgallagher/rusqlite" }
appveyor = { repository = "jgallagher/rusqlite" }
[lib]
name = "rusqlite"
[features]
load_extension = []
backup = []
blob = []
functions = []
trace = []
bundled = ["libsqlite3-sys/bundled"]
[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.8", optional = true }
[dev-dependencies]
tempdir = "~0.3.4"
lazy_static = "~0.2"
regex = "~0.2"
[dependencies.libsqlite3-sys]
path = "libsqlite3-sys"
version = "0.6.0"
[[test]]
name = "config_log"
harness = false
[[test]]
name = "deny_single_threaded_sqlite_config"