Merge branch 'master' of https://github.com/jgallagher/rusqlite into stmt-cache

This commit is contained in:
Gwenael Treguier
2015-12-13 11:23:54 +01:00
17 changed files with 2134 additions and 528 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "rusqlite"
version = "0.4.0"
version = "0.5.0"
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
description = "Ergonomic wrapper for SQLite"
repository = "https://github.com/jgallagher/rusqlite"
@@ -14,7 +14,9 @@ name = "rusqlite"
[features]
load_extension = ["libsqlite3-sys/load_extension"]
backup = []
cache = ["lru-cache"]
functions = []
trace = []
[dependencies]
@@ -25,10 +27,11 @@ 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.2.0"
version = "0.3.0"
[dependencies.lru-cache]
version = "~0.0.4"