Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 9507221

Browse files
committed
Fix wrong underlying lib version
1 parent f6e8331 commit 9507221

3 files changed

Lines changed: 5 additions & 7 deletions

File tree

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,7 @@
55
### TODOs
66

77
- [ ] Figure out the right API ⏳
8-
- [ ] Expose index std::path to be configurable on the C++ side
9-
- [ ] Don't panic on create_index because if index can't be created -> just return to the user
10-
- [ ] cxxtantivy::function but rust::Error -> unify
11-
- [ ] Move includes to cxxtantivy/rust|cxx.hpp
128
- [ ] All READ methods (`search`, `aggregate`, `find`) depend on the exact schema -> make it robust
13-
- [ ] Consider adding multiple workspaces under rust/ because multiple libraries could be added (`memcxx` as a repo, because of the shared deps).
149
- [ ] Write unit / integration test to compare STRING vs JSON fiels search query syntax.
1510
- [ ] Figure out what's the right search syntax for a property graph
1611
- [ ] Add some notion of pagination

text_search/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
[package]
22
name = "tantivy_text_search"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55

66
[dependencies]
7-
cxx = "1.0"
7+
cxx = "1.0.111"
88
tantivy = "0.21.1"
99
log = "0.4.17"
1010
env_logger = "0.10.0"
1111
serde_json = "1.0.79"
12+
# TODO(gitbuda): ahash fixed -> v0.8.7 does NOT compile -> remove below line.
13+
ahash = "=0.8.5"
1214

1315
[build-dependencies]
1416
cxx-build = "1.0"

text_search/ci.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ cd "$SCRIPT_DIR"
3333
# TODO(gitbuda): Add clang-format call here.
3434
cargo fmt
3535

36+
mkdir -p "$SCRIPT_DIR/../build"
3637
cd "$SCRIPT_DIR/../build"
3738
if [ "$MGCXX_TEXT_SEARCH_CI_FULL" = true ]; then
3839
rm -rf ./* && rm -rf .cache

0 commit comments

Comments
 (0)