rusqlite/Cargo.toml

29 lines
621 B
TOML
Raw Normal View History

2014-10-19 19:56:41 -04:00
[package]
name = "rusqlite"
2015-07-26 14:00:51 -04:00
version = "0.2.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"
2015-02-23 19:52:48 -05:00
[features]
load_extension = ["libsqlite3-sys/load_extension"]
[dependencies]
time = "~0.1.0"
2015-01-20 10:03:09 -05:00
bitflags = "~0.1"
libc = "~0.1"
[dev-dependencies]
tempdir = "~0.3.4"
[dependencies.libsqlite3-sys]
path = "libsqlite3-sys"
2015-07-26 14:00:51 -04:00
version = "0.2.0"