-
-
Notifications
You must be signed in to change notification settings - Fork 699
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into stacker-sstable-refactor
- Loading branch information
Showing
10 changed files
with
97 additions
and
30 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
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.19.0-dev" | ||
version = "0.19.0" | ||
authors = ["Paul Masurel <[email protected]>"] | ||
license = "MIT" | ||
categories = ["database-implementations", "data-structures"] | ||
|
@@ -36,13 +36,6 @@ fs2 = { version = "0.4.3", optional = true } | |
levenshtein_automata = "0.2.1" | ||
uuid = { version = "1.0.0", features = ["v4", "serde"] } | ||
crossbeam-channel = "0.5.4" | ||
tantivy-query-grammar = { version="0.18.0", path="./query-grammar" } | ||
tantivy-bitpacker = { version="0.2", path="./bitpacker" } | ||
sstable = { version="0.1", path="./sstable", package ="tantivy-sstable", optional = true } | ||
stacker = { version="0.1", path="./stacker", package ="tantivy-stacker" } | ||
common = { version = "0.3", path = "./common/", package = "tantivy-common" } | ||
fastfield_codecs = { version="0.2", path="./fastfield_codecs", default-features = false } | ||
ownedbytes = { version="0.3", path="./ownedbytes" } | ||
stable_deref_trait = "1.2.0" | ||
rust-stemmers = "1.2.0" | ||
downcast-rs = "1.2.0" | ||
|
@@ -63,6 +56,15 @@ measure_time = "0.8.2" | |
async-trait = "0.1.53" | ||
arc-swap = "1.5.0" | ||
|
||
tantivy-query-grammar = { version= "0.19.0", path="./query-grammar" } | ||
tantivy-bitpacker = { version= "0.3", path="./bitpacker" } | ||
common = { version= "0.4", path = "./common/", package = "tantivy-common" } | ||
fastfield_codecs = { version= "0.3", path="./fastfield_codecs", default-features = false } | ||
ownedbytes = { version= "0.4", path="./ownedbytes" } | ||
sstable = { version="0.1", path="./sstable", package ="tantivy-sstable", optional = true } | ||
stacker = { version="0.1", path="./stacker", package ="tantivy-stacker" } | ||
|
||
|
||
[target.'cfg(windows)'.dependencies] | ||
winapi = "0.3.9" | ||
|
||
|
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,13 +1,15 @@ | ||
[package] | ||
name = "tantivy-bitpacker" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
edition = "2021" | ||
authors = ["Paul Masurel <[email protected]>"] | ||
license = "MIT" | ||
categories = [] | ||
description = """Tantivy-sub crate: bitpacking""" | ||
repository = "https://github.com/quickwit-oss/tantivy" | ||
keywords = [] | ||
documentation = "https://docs.rs/tantivy-bitpacker/latest/tantivy_bitpacker" | ||
homepage = "https://github.com/quickwit-oss/tantivy" | ||
|
||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
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,16 +1,20 @@ | ||
[package] | ||
name = "tantivy-common" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["Paul Masurel <[email protected]>", "Pascal Seitz <[email protected]>"] | ||
license = "MIT" | ||
edition = "2021" | ||
description = "common traits and utility functions used by multiple tantivy subcrates" | ||
documentation = "https://docs.rs/tantivy_common/" | ||
homepage = "https://github.com/quickwit-oss/tantivy" | ||
repository = "https://github.com/quickwit-oss/tantivy" | ||
|
||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
byteorder = "1.4.3" | ||
ownedbytes = { version="0.3", path="../ownedbytes" } | ||
ownedbytes = { version= "0.4", path="../ownedbytes" } | ||
|
||
[dev-dependencies] | ||
proptest = "1.0.0" | ||
|
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,17 +1,20 @@ | ||
[package] | ||
name = "fastfield_codecs" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Pascal Seitz <[email protected]>"] | ||
license = "MIT" | ||
edition = "2021" | ||
description = "Fast field codecs used by tantivy" | ||
documentation = "https://docs.rs/fastfield_codecs/" | ||
homepage = "https://github.com/quickwit-oss/tantivy" | ||
repository = "https://github.com/quickwit-oss/tantivy" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
common = { version = "0.3", path = "../common/", package = "tantivy-common" } | ||
tantivy-bitpacker = { version="0.2", path = "../bitpacker/" } | ||
ownedbytes = { version = "0.3.0", path = "../ownedbytes" } | ||
common = { version = "0.4", path = "../common/", package = "tantivy-common" } | ||
tantivy-bitpacker = { version= "0.3", path = "../bitpacker/" } | ||
ownedbytes = { version = "0.4.0", path = "../ownedbytes" } | ||
prettytable-rs = {version="0.9.0", optional= true} | ||
rand = {version="0.8.3", optional= true} | ||
fastdivide = "0.4" | ||
|
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,10 +1,14 @@ | ||
[package] | ||
authors = ["Paul Masurel <[email protected]>", "Pascal Seitz <[email protected]>"] | ||
name = "ownedbytes" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
description = "Expose data as static slice" | ||
license = "MIT" | ||
documentation = "https://docs.rs/ownedbytes/" | ||
homepage = "https://github.com/quickwit-oss/tantivy" | ||
repository = "https://github.com/quickwit-oss/tantivy" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
|
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-query-grammar" | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
authors = ["Paul Masurel <[email protected]>"] | ||
license = "MIT" | ||
categories = ["database-implementations", "data-structures"] | ||
|
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