30 lines
676 B
TOML
Raw Normal View History

2015-05-28 17:21:43 -04:00
[package]
name = "sqlite"
2015-11-21 20:43:26 +01:00
version = "0.20.0"
2016-02-27 13:05:42 +01:00
license = "Apache-2.0/MIT"
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
description = "The package provides an interface to SQLite."
2016-02-27 13:05:42 +01:00
documentation = "https://stainless-steel.github.io/sqlite"
homepage = "https://github.com/stainless-steel/sqlite"
repository = "https://github.com/stainless-steel/sqlite"
2016-02-28 13:11:44 +01:00
[features]
default = ["standard"]
standard = ["sqlite3-sys/standard"]
sqlcipher = ["sqlite3-sys/sqlcipher"]
2015-05-28 17:21:43 -04:00
[dependencies]
2015-11-07 17:39:10 +01:00
libc = "0.2"
2016-02-28 13:11:44 +01:00
[dependencies.sqlite3-sys]
sqlite3-sys = "0.7"
default-features = false
2015-05-28 19:19:08 -04:00
[dev-dependencies]
2015-11-07 17:39:10 +01:00
temporary = "0.5"