diff --git a/Cargo.toml b/Cargo.toml index 0c340ceca..77fede634 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy" -version = "0.19.0-dev" +version = "0.19.0" authors = ["Paul Masurel "] license = "MIT" categories = ["database-implementations", "data-structures"] @@ -36,11 +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" } -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" @@ -62,6 +57,12 @@ ciborium = { version = "0.2", optional = true} 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" } + [target.'cfg(windows)'.dependencies] winapi = "0.3.9" diff --git a/bitpacker/Cargo.toml b/bitpacker/Cargo.toml index 48c1b8a1c..8a3db03fd 100644 --- a/bitpacker/Cargo.toml +++ b/bitpacker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-bitpacker" -version = "0.2.0" +version = "0.3.0" edition = "2021" authors = ["Paul Masurel "] license = "MIT" @@ -8,6 +8,8 @@ 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 diff --git a/common/Cargo.toml b/common/Cargo.toml index f7085d9c1..e579a9aab 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,16 +1,20 @@ [package] name = "tantivy-common" -version = "0.3.0" +version = "0.4.0" authors = ["Paul Masurel ", "Pascal Seitz "] 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" diff --git a/fastfield_codecs/Cargo.toml b/fastfield_codecs/Cargo.toml index a53a8ceeb..a56d0f983 100644 --- a/fastfield_codecs/Cargo.toml +++ b/fastfield_codecs/Cargo.toml @@ -1,17 +1,20 @@ [package] name = "fastfield_codecs" -version = "0.2.0" +version = "0.3.0" authors = ["Pascal Seitz "] 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" diff --git a/ownedbytes/Cargo.toml b/ownedbytes/Cargo.toml index b06db9f93..4bd3206ef 100644 --- a/ownedbytes/Cargo.toml +++ b/ownedbytes/Cargo.toml @@ -1,10 +1,14 @@ [package] authors = ["Paul Masurel ", "Pascal Seitz "] 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] diff --git a/query-grammar/Cargo.toml b/query-grammar/Cargo.toml index 02c967bbc..91b1c4ad0 100644 --- a/query-grammar/Cargo.toml +++ b/query-grammar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-query-grammar" -version = "0.18.0" +version = "0.19.0" authors = ["Paul Masurel "] license = "MIT" categories = ["database-implementations", "data-structures"]