From 2c4aa5cf81396e38127c2da08dc3f0f67438da83 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 5 Apr 2021 10:40:49 +0000 Subject: [PATCH] Update rusqlite requirement from ~0.24 to ~0.25 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.24.0...v0.24.2) 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 a470a219..06c1ad2b 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.24" +version = "~0.25" features = ["limits", "bundled"] [dependencies.edn] diff --git a/tools/cli/Cargo.toml b/tools/cli/Cargo.toml index bf0af193..dac61a9b 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.24" +version = "~0.25" features = ["limits", "bundled"] [dependencies.mentat]