Skip to content

Commit 164adc8

Browse files
Tantivy 0.19.2 (#67)
* Adding __init__.py file to the tantivy folder to make maturin happy Add Cargo.lock to the repo Set the git-fetch-with-cli cargo flag so that we can override fetch settings Renaming .cargo/config to .cargo/config.toml Adding github-quiq-sh cargo registry Point dependencies at our github-quiq-sh registry Trying to resolve this build issue, pointing pyo3-build-config at our github-quiq-sh registry SER-21487: Enable support for all standard Tantivy languages plus Chinese + Japanese in tantivy-py SER-21487: Use uname rather than UNAME in the Makefile SER-21487: Fix document date handling SER-23013: Upgrade Tantivy and other dependencies * Upgrade to Tantivy 0.19.1 * Apply rustfmt and fix bug when fast option = None * Upgrade to tantivy-0.19.2 * Standardize around using 'cargo fmt' rather than 'rustfmt' * Reverting to old style dependencies * Linting with clippy * Switching out hashmap for defining tokenizers for an array, and adding test for Spanish indexing * Use cargo fmt instead of rustfmt on the Lint ci step
1 parent b204379 commit 164adc8

15 files changed

+1820
-106
lines changed

.cargo/config .cargo/config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
rustflags = [
33
"-C", "link-arg=-undefined",
44
"-C", "link-arg=dynamic_lookup",
5-
]
5+
]

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
toolchain: stable
1919
components: rustfmt
2020
- name: Check Formatting
21-
run: rustfmt --check src/*rs
21+
run: cargo fmt --check
2222

2323
Test:
2424
strategy:

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
build
44
/target
55
**/*.rs.bk
6-
Cargo.lock
76
dist/
87
__pycache__/
98
tantivy.so
9+
tantivy.dylib
1010
tantivy/tantivy.cpython*.so
1111
tantivy.egg-info/

0 commit comments

Comments
 (0)