From 47e2c3da0c5d8bed4a3c338c5259a83fa6f9cb6e Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Thu, 6 Nov 2025 12:52:09 +0200 Subject: [PATCH] Fix extensions test by pinning "home" crate version Build was failing with the following error: ``` error: rustc 1.85.0 is not supported by the following package: home@0.5.12 requires rustc 1.88 Either upgrade rustc or select compatible dependency versions with `cargo update @ --precise ` where `` is the latest version supporting rustc 1.85.0 ``` --- libsql-sqlite3/test/rust_suite/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/libsql-sqlite3/test/rust_suite/Cargo.toml b/libsql-sqlite3/test/rust_suite/Cargo.toml index 90a8251ebf..d6b12cb158 100644 --- a/libsql-sqlite3/test/rust_suite/Cargo.toml +++ b/libsql-sqlite3/test/rust_suite/Cargo.toml @@ -15,6 +15,7 @@ tempfile = "3.3" wabt = "0.10.0" hex = "0.4.3" rustc-hash = "1" +which = "=4.4.0" [features] default = []