Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit c51bb67

Browse files
Merge #325
325: Update milli version to v0.11.0 r=curquiza a=Kerollmops This PR also clean-up some dependencies in the Cargo.toml. Co-authored-by: Kerollmops <clement@meilisearch.com>
2 parents 794c0f6 + af65485 commit c51bb67

File tree

7 files changed

+7
-12
lines changed

7 files changed

+7
-12
lines changed

helpers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "helpers"
3-
version = "0.10.2"
3+
version = "0.11.0"
44
authors = ["Clément Renault <clement@meilisearch.com>"]
55
edition = "2018"
66

http-ui/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
[package]
22
name = "http-ui"
33
description = "The HTTP user interface of the milli search engine"
4-
version = "0.10.2"
4+
version = "0.11.0"
55
authors = ["Clément Renault <clement@meilisearch.com>"]
66
edition = "2018"
77

88
[dependencies]
99
anyhow = "1.0.38"
1010
byte-unit = { version = "4.0.9", default-features = false, features = ["std"] }
1111
crossbeam-channel = "0.5.0"
12-
grenad = { git = "https://github.com/Kerollmops/grenad.git", rev = "3adcb26" }
1312
heed = { git = "https://github.com/Kerollmops/heed", tag = "v0.12.1" }
1413
meilisearch-tokenizer = { git = "https://github.com/meilisearch/tokenizer.git", tag = "v0.2.5" }
1514
memmap = "0.7.0"

http-ui/src/main.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@ use byte_unit::Byte;
1616
use either::Either;
1717
use flate2::read::GzDecoder;
1818
use futures::{stream, FutureExt, StreamExt};
19-
use grenad::CompressionType;
2019
use heed::EnvOpenOptions;
2120
use meilisearch_tokenizer::{Analyzer, AnalyzerConfig};
2221
use milli::update::UpdateIndexingStep::*;
2322
use milli::update::{IndexDocumentsMethod, Setting, UpdateBuilder, UpdateFormat};
24-
use milli::{obkv_to_json, FilterCondition, Index, MatchingWords, SearchResult};
23+
use milli::{obkv_to_json, CompressionType, FilterCondition, Index, MatchingWords, SearchResult};
2524
use once_cell::sync::OnceCell;
2625
use rayon::ThreadPool;
2726
use serde::{Deserialize, Serialize};

infos/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "infos"
3-
version = "0.10.2"
3+
version = "0.11.0"
44
authors = ["Clément Renault <clement@meilisearch.com>"]
55
edition = "2018"
66

milli/Cargo.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "milli"
3-
version = "0.10.2"
3+
version = "0.11.0"
44
authors = ["Kerollmops <clement@meilisearch.com>"]
55
edition = "2018"
66

@@ -45,10 +45,6 @@ itertools = "0.10.0"
4545
log = "0.4.14"
4646
logging_timer = "1.0.0"
4747

48-
# We temporarily depend on this crate just to fix this issue
49-
# https://github.com/bheisler/TinyTemplate/pull/17
50-
tinytemplate = "=1.1.0"
51-
5248
[dev-dependencies]
5349
big_s = "1.0.2"
5450
maplit = "1.0.2"

milli/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ use std::hash::BuildHasherDefault;
2020
use std::result::Result as StdResult;
2121

2222
use fxhash::{FxHasher32, FxHasher64};
23+
pub use grenad::CompressionType;
2324
use serde_json::{Map, Value};
2425

2526
pub use self::criterion::{default_criteria, AscDesc, Criterion};

search/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "search"
3-
version = "0.10.2"
3+
version = "0.11.0"
44
authors = ["Clément Renault <clement@meilisearch.com>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)