From 4140971e74dbce56eb3df39de5b67435e5b44ba5 Mon Sep 17 00:00:00 2001 From: gwenn Date: Sat, 17 Feb 2024 10:19:12 +0100 Subject: [PATCH 1/2] Bump rusqlite to version 0.31 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4710f185a..2f03621af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ cfg-if = "1.0" home = { version = "0.5.4", optional = true } # For History fd-lock = { version = "4.0.0", optional = true } -rusqlite = { version = "0.30.0", optional = true, default-features = false, features = ["bundled", "backup"] } +rusqlite = { version = "0.31.0", optional = true, default-features = false, features = ["bundled", "backup"] } libc = "0.2" log = "0.4" unicode-width = "0.1" From 60c80e89814092e49151e3018f941b00af06233a Mon Sep 17 00:00:00 2001 From: gwenn Date: Sat, 17 Feb 2024 10:23:36 +0100 Subject: [PATCH 2/2] Ignore unstable test binding::test::size_of_event --- src/binding.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/binding.rs b/src/binding.rs index ed9dff8a4..edb9afb0a 100644 --- a/src/binding.rs +++ b/src/binding.rs @@ -249,7 +249,7 @@ mod test { } #[test] - #[cfg(target_arch = "x86_64")] + #[ignore] fn size_of_event() { use core::mem::size_of; assert_eq!(size_of::(), 32);