rusqlite/Cargo.toml

44 lines
837 B
TOML
Raw Normal View History

2014-10-20 07:56:41 +08:00
[package]
name = "rusqlite"
2015-12-09 10:30:19 +08:00
version = "0.5.0"
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 = ["libsqlite3-sys/load_extension"]
backup = []
2015-08-02 00:51:02 +08:00
blob = []
2015-08-02 18:07:49 +08:00
cache = ["lru-cache"]
functions = []
2015-08-02 00:58:04 +08:00
trace = []
2015-02-24 08:52:48 +08:00
[dependencies]
time = "~0.1.0"
2015-01-20 23:03:09 +08:00
bitflags = "~0.1"
2015-12-01 14:18:44 +08:00
libc = "~0.2"
[dev-dependencies]
tempdir = "~0.3.4"
lazy_static = "~0.1"
2015-08-09 19:06:23 +08:00
regex = "~0.1.41"
[dependencies.libsqlite3-sys]
path = "libsqlite3-sys"
2015-12-09 10:30:19 +08:00
version = "0.3.0"
2015-08-02 18:07:49 +08:00
[dependencies.lru-cache]
version = "~0.0.4"
optional = true
[[test]]
name = "config_log"
harness = false