Skip to content

Commit

Permalink
Fix wrong underlying lib version
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbuda committed Dec 30, 2023
1 parent f6e8331 commit 9507221
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,7 @@
### TODOs

- [ ] Figure out the right API ⏳
- [ ] Expose index std::path to be configurable on the C++ side
- [ ] Don't panic on create_index because if index can't be created -> just return to the user
- [ ] cxxtantivy::function but rust::Error -> unify
- [ ] Move includes to cxxtantivy/rust|cxx.hpp
- [ ] All READ methods (`search`, `aggregate`, `find`) depend on the exact schema -> make it robust
- [ ] Consider adding multiple workspaces under rust/ because multiple libraries could be added (`memcxx` as a repo, because of the shared deps).
- [ ] Write unit / integration test to compare STRING vs JSON fiels search query syntax.
- [ ] Figure out what's the right search syntax for a property graph
- [ ] Add some notion of pagination
Expand Down
6 changes: 4 additions & 2 deletions text_search/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[package]
name = "tantivy_text_search"
version = "0.0.1"
version = "0.0.2"
edition = "2021"

[dependencies]
cxx = "1.0"
cxx = "1.0.111"
tantivy = "0.21.1"
log = "0.4.17"
env_logger = "0.10.0"
serde_json = "1.0.79"
# TODO(gitbuda): ahash fixed -> v0.8.7 does NOT compile -> remove below line.
ahash = "=0.8.5"

[build-dependencies]
cxx-build = "1.0"
Expand Down
1 change: 1 addition & 0 deletions text_search/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ cd "$SCRIPT_DIR"
# TODO(gitbuda): Add clang-format call here.
cargo fmt

mkdir -p "$SCRIPT_DIR/../build"
cd "$SCRIPT_DIR/../build"
if [ "$MGCXX_TEXT_SEARCH_CI_FULL" = true ]; then
rm -rf ./* && rm -rf .cache
Expand Down

0 comments on commit 9507221

Please sign in to comment.