From 526c9c39288861c8173322dec7b76c4cf6668af5 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2020 10:29:49 +0000 Subject: [PATCH] Update rusqlite requirement from ~0.23 to ~0.24 Updates the requirements on [rusqlite](https://github.com/rusqlite/rusqlite) to permit the latest version. - [Release notes](https://github.com/rusqlite/rusqlite/releases) - [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md) - [Commits](https://github.com/rusqlite/rusqlite/compare/0.23.0...0.23.1) Signed-off-by: dependabot-preview[bot] --- Cargo.toml | 2 +- tools/cli/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index acce4614..d5289d3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ log = "~0.4" uuid = { version = "~0.8", features = ["v4", "serde"] } [dependencies.rusqlite] -version = "~0.23" +version = "~0.24" features = ["limits", "bundled"] [dependencies.edn] diff --git a/tools/cli/Cargo.toml b/tools/cli/Cargo.toml index 76445a7d..e6a24e3d 100644 --- a/tools/cli/Cargo.toml +++ b/tools/cli/Cargo.toml @@ -34,7 +34,7 @@ termion = "~1.5" time = "~0.2" [dependencies.rusqlite] -version = "~0.23" +version = "~0.24" features = ["limits", "bundled"] [dependencies.mentat]