Skip to content

Commit 341b150

Browse files
committed
fix: downgrade VectorChord to v1.0.0 for stable Rust compatibility
VectorChord v1.1.0 (Feb 2026) uses vec_deque_pop_if which is not yet stabilized in our pinned Rust toolchain. Use v1.0.0 (Nov 2025) which builds on stable Rust 1.88.0 without nightly features.
1 parent 96215d7 commit 341b150

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

nix/ext/vectorchord.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
}:
88
let
99
pname = "vchord";
10-
version = "1.1.0";
11-
rustVersion = "1.90.0";
10+
version = "1.0.0";
11+
rustVersion = "1.88.0";
1212
pgrxVersion = "0.16.1";
1313

1414
cargo = rust-bin.stable.${rustVersion}.default;
@@ -18,7 +18,7 @@ let
1818

1919
src = builtins.fetchGit {
2020
url = "https://github.com/tensorchord/VectorChord.git";
21-
rev = "c68a6aec9446899d0ab22662968053bd2820ddd4";
21+
rev = "60e7b27c970fe133f85645a367c33b97a819d576";
2222
shallow = true;
2323
};
2424
in

0 commit comments

Comments
 (0)