22 lines
521 B
TOML
Raw Normal View History

2015-05-28 17:21:43 -04:00
[package]
name = "sqlite"
2015-11-21 17:15:58 +01:00
version = "0.19.8"
2015-11-21 17:15:46 +01:00
authors = [
"Ivan Ukhov <ivan.ukhov@gmail.com>",
"Jake Kerr <kodafox@gmail.com>",
"Tomoki Aonuma <uasi@uasi.jp>",
2015-11-21 17:15:46 +01:00
]
2015-05-28 17:21:43 -04:00
license = "MIT"
repository = "https://github.com/stainless-steel/sqlite"
homepage = "https://github.com/stainless-steel/sqlite"
documentation = "https://stainless-steel.github.io/sqlite"
description = "The package provides an interface to SQLite."
2015-08-01 13:55:22 -04:00
build = "build.rs"
2015-05-28 17:21:43 -04:00
[dependencies]
2015-11-07 17:39:10 +01:00
libc = "0.2"
2015-08-01 13:55:22 -04:00
sqlite3-sys = "0.6"
2015-05-28 19:19:08 -04:00
[dev-dependencies]
2015-11-07 17:39:10 +01:00
temporary = "0.5"