From 9f32b2260249d12ad1517b02cfe753d22bf2d846 Mon Sep 17 00:00:00 2001 From: Paul Masurel Date: Thu, 26 Aug 2021 08:56:33 +0900 Subject: [PATCH] Preparing for release. --- Cargo.toml | 4 ++-- bitpacker/Cargo.toml | 2 +- fastfield_codecs/Cargo.toml | 2 +- ownedbytes/Cargo.toml | 1 + 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4d9cb0977..5d9414beb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ num_cpus = "1.13" fs2={ version = "0.4.3", optional = true } levenshtein_automata = "0.2" uuid = { version = "0.8.2", features = ["v4", "serde"] } -crossbeam = "0.8" +crossbeam = "0.8.1" futures = { version = "0.3.15", features = ["thread-pool"] } tantivy-query-grammar = { version="0.15.0", path="./query-grammar" } tantivy-bitpacker = { version="0.1", path="./bitpacker" } @@ -64,7 +64,7 @@ rand = "0.8.3" maplit = "1.0.2" matches = "0.1.8" proptest = "1.0" -criterion = "0.3.4" +criterion = "0.3.5" [dev-dependencies.fail] version = "0.4" diff --git a/bitpacker/Cargo.toml b/bitpacker/Cargo.toml index daeba0ca8..680b72505 100644 --- a/bitpacker/Cargo.toml +++ b/bitpacker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tantivy-bitpacker" -version = "0.1.0" +version = "0.1.1" edition = "2018" authors = ["Paul Masurel "] license = "MIT" diff --git a/fastfield_codecs/Cargo.toml b/fastfield_codecs/Cargo.toml index 3b813daa5..6ee206e38 100644 --- a/fastfield_codecs/Cargo.toml +++ b/fastfield_codecs/Cargo.toml @@ -10,7 +10,7 @@ description = "Fast field codecs used by tantivy" [dependencies] 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} rand = {version="0.8.3", optional= true} diff --git a/ownedbytes/Cargo.toml b/ownedbytes/Cargo.toml index 188c09d5f..dd9556c3c 100644 --- a/ownedbytes/Cargo.toml +++ b/ownedbytes/Cargo.toml @@ -4,6 +4,7 @@ name = "ownedbytes" version = "0.1.0" edition = "2018" description = "Expose data as static slice" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies]