Commit 2d50cd0
authored
# Summary
This PR fixes #2180 aka the extension tests that were failing due to
dependency incompatibility with Rust 1.85.
## Problem
The extension tests in `libsql-sqlite3/test/rust_suite` were failing
because:
The `home` crate version 0.5.12 requires Rust 1.88, but the project uses
Rust 1.85
Older versions of `wabt-sys` had CMake compatibility issues requiring
newer CMake versions
## Solution
Pin `home` crate to version `=0.5.9` which is compatible with Rust 1.85
Downgrade `wabt` from `0.10.0` to `0.9.1` to avoid CMake issues
Explicitly add the home dependency in Cargo.toml for clarity
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
| 18 | + | |
18 | 19 | | |
19 | 20 | | |
20 | 21 | | |
| |||
0 commit comments