diff --git a/Cargo.lock b/Cargo.lock index 3e86242..776c2cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -313,9 +313,9 @@ checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49" [[package]] name = "libsqlite3-sys" -version = "0.17.3" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56d90181c2904c287e5390186be820e5ef311a3c62edebb7d6ca3d6a48ce041d" +checksum = "1e704a02bcaecd4a08b93a23f6be59d0bd79cd161e0963e9499165a0a35df7bd" dependencies = [ "cc", "pkg-config", @@ -706,9 +706,9 @@ checksum = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8" [[package]] name = "rusqlite" -version = "0.21.0" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a656821bb6317a84b257737b7934f79c0dbb7eb694710475908280ebad3e64" +checksum = "91d8c0af5f7b83a9c2ae43e2271105f9090bc6c1748892d31085b48f8a47d48f" dependencies = [ "bitflags", "fallible-iterator", @@ -716,6 +716,7 @@ dependencies = [ "libsqlite3-sys", "lru-cache", "memchr", + "smallvec", "time", ] diff --git a/qry-runtime/Cargo.toml b/qry-runtime/Cargo.toml index 01e73b9..18c95e8 100644 --- a/qry-runtime/Cargo.toml +++ b/qry-runtime/Cargo.toml @@ -11,5 +11,5 @@ lazy_static = "1.4.0" indexmap = "1.4.0" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -rusqlite = { version = "0.21.0", features = ["bundled"] } +rusqlite = { version = "0.23.0", features = ["bundled"] } prettytable-rs = "0.8.0"