Skip to content

Commit 34bb04f

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 34bb04f

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

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
@@ -7,6 +7,9 @@ edition = "2021"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

10+
[patch.crates-io]
11+
which = { git = "https://github.com/harryfei/which-rs", tag = "4.4.0" }
12+
1013
[dev-dependencies]
1114
libsql-sys = { path = "../../../libsql-sys", features = ["wal", "wasmtime-bindings", "rusqlite"], default_features = false }
1215

0 commit comments

Comments
 (0)