mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
9f5f4ac385
Conflicts: Cargo.toml src/lib.rs
38 lines
744 B
TOML
38 lines
744 B
TOML
[package]
|
|
name = "rusqlite"
|
|
version = "0.5.0"
|
|
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
|
description = "Ergonomic wrapper for SQLite"
|
|
repository = "https://github.com/jgallagher/rusqlite"
|
|
documentation = "http://jgallagher.github.io/rusqlite/rusqlite/index.html"
|
|
readme = "README.md"
|
|
keywords = ["sqlite", "database", "ffi"]
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "rusqlite"
|
|
|
|
[features]
|
|
load_extension = ["libsqlite3-sys/load_extension"]
|
|
backup = []
|
|
functions = []
|
|
trace = []
|
|
|
|
[dependencies]
|
|
time = "~0.1.0"
|
|
bitflags = "~0.1"
|
|
libc = "~0.2"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "~0.3.4"
|
|
lazy_static = "~0.1"
|
|
regex = "~0.1.41"
|
|
|
|
[dependencies.libsqlite3-sys]
|
|
path = "libsqlite3-sys"
|
|
version = "0.3.0"
|
|
|
|
[[test]]
|
|
name = "config_log"
|
|
harness = false
|