mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2025-12-26 20:19:57 +00:00
Preparing for release.
This commit is contained in:
@@ -31,7 +31,7 @@ num_cpus = "1.13"
|
|||||||
fs2={ version = "0.4.3", optional = true }
|
fs2={ version = "0.4.3", optional = true }
|
||||||
levenshtein_automata = "0.2"
|
levenshtein_automata = "0.2"
|
||||||
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
||||||
crossbeam = "0.8"
|
crossbeam = "0.8.1"
|
||||||
futures = { version = "0.3.15", features = ["thread-pool"] }
|
futures = { version = "0.3.15", features = ["thread-pool"] }
|
||||||
tantivy-query-grammar = { version="0.15.0", path="./query-grammar" }
|
tantivy-query-grammar = { version="0.15.0", path="./query-grammar" }
|
||||||
tantivy-bitpacker = { version="0.1", path="./bitpacker" }
|
tantivy-bitpacker = { version="0.1", path="./bitpacker" }
|
||||||
@@ -64,7 +64,7 @@ rand = "0.8.3"
|
|||||||
maplit = "1.0.2"
|
maplit = "1.0.2"
|
||||||
matches = "0.1.8"
|
matches = "0.1.8"
|
||||||
proptest = "1.0"
|
proptest = "1.0"
|
||||||
criterion = "0.3.4"
|
criterion = "0.3.5"
|
||||||
|
|
||||||
[dev-dependencies.fail]
|
[dev-dependencies.fail]
|
||||||
version = "0.4"
|
version = "0.4"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tantivy-bitpacker"
|
name = "tantivy-bitpacker"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
|
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ description = "Fast field codecs used by tantivy"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
common = { version = "0.1", path = "../common/", package = "tantivy-common" }
|
common = { version = "0.1", path = "../common/", package = "tantivy-common" }
|
||||||
tantivy-bitpacker = { path = "../bitpacker/" }
|
tantivy-bitpacker = { version="0.1.1", path = "../bitpacker/" }
|
||||||
prettytable-rs = {version="0.8.0", optional= true}
|
prettytable-rs = {version="0.8.0", optional= true}
|
||||||
rand = {version="0.8.3", optional= true}
|
rand = {version="0.8.3", optional= true}
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ name = "ownedbytes"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Expose data as static slice"
|
description = "Expose data as static slice"
|
||||||
|
license = "MIT"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|||||||
Reference in New Issue
Block a user