From 051668b62b76270dc8ad3b011c6adbfe8ee8bde2 Mon Sep 17 00:00:00 2001 From: strawberry Date: Tue, 26 Mar 2024 21:47:59 -0400 Subject: [PATCH] use rusqlite commit before c-strings were added this is a 1.77.0 rust feature, this would require bumping MSRV Signed-off-by: strawberry --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 340b8822..37388d7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1356,7 +1356,7 @@ dependencies = [ [[package]] name = "libsqlite3-sys" version = "0.28.0" -source = "git+https://github.com/rusqlite/rusqlite?branch=master#b41bd805710149ebfaed577dfedb464338e2ca97" +source = "git+https://github.com/rusqlite/rusqlite?rev=e00b626e2b1c67347d789fb7f600281705c89381#e00b626e2b1c67347d789fb7f600281705c89381" dependencies = [ "cc", "pkg-config", @@ -2344,7 +2344,7 @@ dependencies = [ [[package]] name = "rusqlite" version = "0.31.0" -source = "git+https://github.com/rusqlite/rusqlite?branch=master#b41bd805710149ebfaed577dfedb464338e2ca97" +source = "git+https://github.com/rusqlite/rusqlite?rev=e00b626e2b1c67347d789fb7f600281705c89381#e00b626e2b1c67347d789fb7f600281705c89381" dependencies = [ "bitflags 2.5.0", "fallible-iterator", diff --git a/Cargo.toml b/Cargo.toml index 158e1e47..4615d5d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -243,8 +243,8 @@ features = ["multi-threaded-cf"] [dependencies.rusqlite] git = "https://github.com/rusqlite/rusqlite" -branch = "master" -#rev = "def8e9460d8376a5c0c9f4f9846d413a9cd4581a" +#branch = "master" +rev = "e00b626e2b1c67347d789fb7f600281705c89381" optional = true features = ["bundled"]