Skip to content

Commit d49853f

Browse files
committed
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 <name>@<current-ver> --precise <compatible-ver>` where `<compatible-ver>` is the latest version supporting rustc 1.85.0 ```
1 parent d4026bc commit d49853f

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ rusqlite = { package = "libsql-rusqlite", path = "vendored/rusqlite", version =
4848
hyper = { version = "0.14" }
4949
tower = { version = "0.4.13" }
5050
zerocopy = { version = "0.7.32", features = ["derive", "alloc"] }
51+
which = "=4.4.0"
5152

5253
[profile.release]
5354
codegen-units = 1

libsql-sqlite3/test/rust_suite/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ edition = "2021"
55

66
[workspace]
77

8+
[workspace.dependencies]
9+
which = "=4.4.0"
10+
811
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
912

1013
[dev-dependencies]

0 commit comments

Comments
 (0)