forked from quickwit-oss/tantivy
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small changes in the Executor API. (quickwit-oss#2391)
Warning, this change is mildly not backward compatible so I bumped tantivy's version.
- Loading branch information
1 parent
c379b35
commit 812ef4d
Showing
4 changed files
with
51 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tantivy" | ||
version = "0.22.0" | ||
version = "0.23.0" | ||
authors = ["Paul Masurel <[email protected]>"] | ||
license = "MIT" | ||
categories = ["database-implementations", "data-structures"] | ||
|
@@ -15,12 +15,16 @@ rust-version = "1.63" | |
exclude = ["benches/*.json", "benches/*.txt"] | ||
|
||
[dependencies] | ||
oneshot = "0.1.5" | ||
# Switch back to the non-forked oneshot crate once https://github.com/faern/oneshot/pull/35 is merged | ||
oneshot = { git = "https://github.com/fulmicoton/oneshot.git", rev = "c10a3ba" } | ||
base64 = "0.22.0" | ||
byteorder = "1.4.3" | ||
crc32fast = "1.3.2" | ||
once_cell = "1.10.0" | ||
regex = { version = "1.5.5", default-features = false, features = ["std", "unicode"] } | ||
regex = { version = "1.5.5", default-features = false, features = [ | ||
"std", | ||
"unicode", | ||
] } | ||
aho-corasick = "1.0" | ||
tantivy-fst = "0.5" | ||
memmap2 = { version = "0.9.0", optional = true } | ||
|
@@ -36,7 +40,9 @@ uuid = { version = "1.0.0", features = ["v4", "serde"] } | |
crossbeam-channel = "0.5.4" | ||
rust-stemmers = "1.2.0" | ||
downcast-rs = "1.2.0" | ||
bitpacking = { version = "0.9.2", default-features = false, features = ["bitpacker4x"] } | ||
bitpacking = { version = "0.9.2", default-features = false, features = [ | ||
"bitpacker4x", | ||
] } | ||
census = "0.4.2" | ||
rustc-hash = "1.1.0" | ||
thiserror = "1.0.30" | ||
|
@@ -51,13 +57,13 @@ itertools = "0.12.0" | |
measure_time = "0.8.2" | ||
arc-swap = "1.5.0" | ||
|
||
columnar = { version= "0.3", path="./columnar", package ="tantivy-columnar" } | ||
sstable = { version= "0.3", path="./sstable", package ="tantivy-sstable", optional = true } | ||
stacker = { version= "0.3", path="./stacker", package ="tantivy-stacker" } | ||
query-grammar = { version= "0.22.0", path="./query-grammar", package = "tantivy-query-grammar" } | ||
tantivy-bitpacker = { version= "0.6", path="./bitpacker" } | ||
common = { version= "0.7", path = "./common/", package = "tantivy-common" } | ||
tokenizer-api = { version= "0.3", path="./tokenizer-api", package="tantivy-tokenizer-api" } | ||
columnar = { version = "0.3", path = "./columnar", package = "tantivy-columnar" } | ||
sstable = { version = "0.3", path = "./sstable", package = "tantivy-sstable", optional = true } | ||
stacker = { version = "0.3", path = "./stacker", package = "tantivy-stacker" } | ||
query-grammar = { version = "0.22.0", path = "./query-grammar", package = "tantivy-query-grammar" } | ||
tantivy-bitpacker = { version = "0.6", path = "./bitpacker" } | ||
common = { version = "0.7", path = "./common/", package = "tantivy-common" } | ||
tokenizer-api = { version = "0.3", path = "./tokenizer-api", package = "tantivy-tokenizer-api" } | ||
sketches-ddsketch = { version = "0.2.1", features = ["use_serde"] } | ||
futures-util = { version = "0.3.28", optional = true } | ||
fnv = "1.0.7" | ||
|
@@ -66,7 +72,7 @@ fnv = "1.0.7" | |
winapi = "0.3.9" | ||
|
||
[dev-dependencies] | ||
binggan = "0.5.1" | ||
binggan = "0.5.2" | ||
rand = "0.8.5" | ||
maplit = "1.0.2" | ||
matches = "0.1.9" | ||
|
@@ -112,7 +118,7 @@ lz4-compression = ["lz4_flex"] | |
zstd-compression = ["zstd"] | ||
|
||
failpoints = ["fail", "fail/failpoints"] | ||
unstable = [] # useful for benches. | ||
unstable = [] # useful for benches. | ||
|
||
quickwit = ["sstable", "futures-util"] | ||
|
||
|
@@ -122,7 +128,16 @@ quickwit = ["sstable", "futures-util"] | |
compare_hash_only = ["stacker/compare_hash_only"] | ||
|
||
[workspace] | ||
members = ["query-grammar", "bitpacker", "common", "ownedbytes", "stacker", "sstable", "tokenizer-api", "columnar"] | ||
members = [ | ||
"query-grammar", | ||
"bitpacker", | ||
"common", | ||
"ownedbytes", | ||
"stacker", | ||
"sstable", | ||
"tokenizer-api", | ||
"columnar", | ||
] | ||
|
||
# Following the "fail" crate best practises, we isolate | ||
# tests that define specific behavior in fail check points | ||
|
@@ -147,4 +162,3 @@ harness = false | |
[[bench]] | ||
name = "agg_bench" | ||
harness = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters