diff --git a/Cargo.lock b/Cargo.lock index 5e644ff..d984376 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "addr2line" version = "0.13.0" @@ -533,6 +535,18 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb7217124812dc5672b7476d0c2d20cfe9f7c0f1ba0904b674a9762a0212f72e" +[[package]] +name = "fallible-iterator" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" + +[[package]] +name = "fallible-streaming-iterator" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" + [[package]] name = "filetime" version = "0.1.15" @@ -994,9 +1008,9 @@ checksum = "a2f02823cf78b754822df5f7f268fb59822e7296276d3e069d8e8cb26a14bd10" [[package]] name = "libsqlite3-sys" -version = "0.9.3" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3711dfd91a1081d2458ad2d06ea30a8755256e74038be2ad927d94e1c955ca8" +checksum = "1e704a02bcaecd4a08b93a23f6be59d0bd79cd161e0963e9499165a0a35df7bd" dependencies = [ "pkg-config", "vcpkg", @@ -1493,7 +1507,7 @@ dependencies = [ "libc", "redox_syscall", "rustc_version", - "smallvec", + "smallvec 0.6.13", "winapi 0.3.9", ] @@ -1586,7 +1600,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "115dde90ef51af573580c035857badbece2aa5cde3de1dfb3c932969ca92a6c5" dependencies = [ "bytes 0.4.12", - "fallible-iterator", + "fallible-iterator 0.1.6", "log 0.4.11", "postgres-protocol", "postgres-shared", @@ -1602,7 +1616,7 @@ dependencies = [ "base64 0.6.0", "byteorder", "bytes 0.4.12", - "fallible-iterator", + "fallible-iterator 0.1.6", "generic-array 0.9.0", "hmac", "md5", @@ -1618,7 +1632,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ffac35b3e0029b404c24a3b82149b4e904f293e8ca4a327eefa24d3ca50df36f" dependencies = [ - "fallible-iterator", + "fallible-iterator 0.1.6", "hex", "phf", "postgres-protocol", @@ -2006,13 +2020,17 @@ dependencies = [ [[package]] name = "rusqlite" -version = "0.14.0" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9d9118f1ce84d8d0b67f9779936432fb42bb620cef2122409d786892cce9a3c" +checksum = "91d8c0af5f7b83a9c2ae43e2271105f9090bc6c1748892d31085b48f8a47d48f" dependencies = [ "bitflags 1.2.1", + "fallible-iterator 0.2.0", + "fallible-streaming-iterator", "libsqlite3-sys", "lru-cache", + "memchr 2.3.3", + "smallvec 1.8.0", "time", ] @@ -2256,6 +2274,12 @@ dependencies = [ "maybe-uninit", ] +[[package]] +name = "smallvec" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83" + [[package]] name = "socket2" version = "0.3.12" diff --git a/Cargo.toml b/Cargo.toml index 2cd5a44..8220481 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ version = "0.5.1" optional = true [dependencies.rusqlite] -version = "0.14.0" +version = "0.23.0" optional = true [dependencies.postgres]