29 lines
666 B
TOML
Raw Normal View History

2015-05-28 17:21:43 -04:00
[package]
name = "sqlite"
2016-11-05 11:34:15 +01:00
version = "0.23.1"
2016-02-27 13:05:42 +01:00
license = "Apache-2.0/MIT"
2015-11-21 17:15:46 +01:00
authors = [
2016-11-08 09:12:33 +01:00
"Ivan Stankovic <pokemon@fly.srk.fer.hr>",
"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-11-05 11:34:15 +01:00
documentation = "https://docs.rs/sqlite"
2016-02-27 13:05:42 +01:00
homepage = "https://github.com/stainless-steel/sqlite"
repository = "https://github.com/stainless-steel/sqlite"
2016-02-28 13:11:44 +01:00
[features]
2016-07-03 20:08:17 +02:00
default = ["linkage"]
linkage = ["sqlite3-sys/linkage"]
2016-02-28 13:11:44 +01:00
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]
2016-07-03 20:08:17 +02:00
version = "0.11"
2016-02-28 13:11:44 +01:00
default-features = false
2015-05-28 19:19:08 -04:00
[dev-dependencies]
2016-05-22 19:27:19 +02:00
temporary = "0.6"