feat(deps): update rusqlite to official version again

A fix for the non utf8 strings has been merged and released in `0.20`
This commit is contained in:
dignifiedquire
2019-08-02 21:43:25 +02:00
committed by Floris Bruynooghe
parent 294e855bbe
commit a8cea64f39
2 changed files with 160 additions and 171 deletions

323
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -35,9 +35,9 @@ failure_derive = "0.1.5"
rustyline = "4.1.0" rustyline = "4.1.0"
lazy_static = "1.3.0" lazy_static = "1.3.0"
regex = "1.1.6" regex = "1.1.6"
rusqlite = { version = "0.19", features = ["bundled"] } rusqlite = { version = "0.20", features = ["bundled"] }
addr = "0.2.0" addr = "0.2.0"
r2d2_sqlite = "0.11.0" r2d2_sqlite = "0.12.0"
r2d2 = "0.8.5" r2d2 = "0.8.5"
strum = "0.15.0" strum = "0.15.0"
strum_macros = "0.15.0" strum_macros = "0.15.0"
@@ -55,10 +55,6 @@ members = [
"deltachat-ffi" "deltachat-ffi"
] ]
[patch.crates-io]
rusqlite = { git = "http://github.com/dignifiedquire/rusqlite", branch = "fix/text", features = ["bundled"] }
[[example]] [[example]]
name = "simple" name = "simple"
path = "examples/simple.rs" path = "examples/simple.rs"