From 63682c2c9a9c0b01a54db7e84b320cd2818a6178 Mon Sep 17 00:00:00 2001 From: Kerollmops Date: Mon, 14 Mar 2022 17:00:53 +0100 Subject: [PATCH] Upgrade the dependencies --- benchmarks/Cargo.toml | 16 +++++++-------- cli/Cargo.toml | 14 ++++++------- filter-parser/Cargo.toml | 2 +- helpers/Cargo.toml | 6 +++--- http-ui/Cargo.toml | 42 +++++++++++++++++++------------------- infos/Cargo.toml | 12 +++++------ milli/Cargo.toml | 44 ++++++++++++++++++++-------------------- 7 files changed, 68 insertions(+), 68 deletions(-) diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index b48599679..0cac5e017 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -6,8 +6,8 @@ publish = false [dependencies] milli = { path = "../milli" } -anyhow = "1.0" -serde_json = { version = "1.0.62", features = ["preserve_order"] } +anyhow = "1.0.56" +serde_json = { version = "1.0.79", features = ["preserve_order"] } csv = "1.1.6" [target.'cfg(target_os = "linux")'.dependencies] @@ -15,14 +15,14 @@ jemallocator = "0.3.2" [dev-dependencies] heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1" } -criterion = { version = "0.3.4", features = ["html_reports"] } +criterion = { version = "0.3.5", features = ["html_reports"] } [build-dependencies] -anyhow = "1.0" -bytes = "1.0" -flate2 = "1.0.20" -convert_case = "0.4" -reqwest = { version = "0.11.3", features = ["blocking", "rustls-tls"], default-features = false } +anyhow = "1.0.56" +bytes = "1.1.0" +flate2 = "1.0.22" +convert_case = "0.5.0" +reqwest = { version = "0.11.9", features = ["blocking", "rustls-tls"], default-features = false } [[bench]] name = "search_songs" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 023cd06f6..4378902ca 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -8,15 +8,15 @@ description = "A CLI to interact with a milli index" [dependencies] indicatif = "0.16.2" -serde = "1.0.129" -serde_json = "1.0.66" -structopt = "0.3.22" +serde = "1.0.136" +serde_json = "1.0.79" +structopt = "0.3.26" milli = { path = "../milli" } -eyre = "0.6.5" -color-eyre = "0.5.11" +eyre = "0.6.7" +color-eyre = "0.6.1" heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1", default-features = false, features = ["lmdb", "sync-read-txn"] } -byte-unit = { version = "4.0.12", features = ["serde"] } -bimap = "0.6.1" +byte-unit = { version = "4.0.14", features = ["serde"] } +bimap = "0.6.2" csv = "1.1.6" stderrlog = "0.5.1" diff --git a/filter-parser/Cargo.toml b/filter-parser/Cargo.toml index ee44bcb7f..ea29404ed 100644 --- a/filter-parser/Cargo.toml +++ b/filter-parser/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nom = "7.0.0" +nom = "7.1.0" nom_locate = "4.0.0" diff --git a/helpers/Cargo.toml b/helpers/Cargo.toml index dc0f7dc81..482750636 100644 --- a/helpers/Cargo.toml +++ b/helpers/Cargo.toml @@ -5,12 +5,12 @@ authors = ["Clément Renault "] edition = "2018" [dependencies] -anyhow = "1.0.38" -byte-unit = { version = "4.0.9", default-features = false, features = ["std"] } +anyhow = "1.0.56" +byte-unit = { version = "4.0.14", default-features = false, features = ["std"] } heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1" } milli = { path = "../milli" } stderrlog = "0.5.1" -structopt = { version = "0.3.21", default-features = false } +structopt = { version = "0.3.26", default-features = false } [target.'cfg(target_os = "linux")'.dependencies] jemallocator = "0.3.2" diff --git a/http-ui/Cargo.toml b/http-ui/Cargo.toml index d8c1775f5..9dd269970 100644 --- a/http-ui/Cargo.toml +++ b/http-ui/Cargo.toml @@ -6,42 +6,42 @@ authors = ["Clément Renault "] edition = "2018" [dependencies] -anyhow = "1.0.38" -byte-unit = { version = "4.0.9", default-features = false, features = ["std"] } -crossbeam-channel = "0.5.0" +anyhow = "1.0.56" +byte-unit = { version = "4.0.14", default-features = false, features = ["std"] } +crossbeam-channel = "0.5.2" heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1" } -memmap2 = "0.5.0" +memmap2 = "0.5.3" milli = { path = "../milli" } -once_cell = "1.5.2" -rayon = "1.5.0" -structopt = { version = "0.3.21", default-features = false, features = ["wrap_help"] } -tempfile = "3.2.0" +once_cell = "1.10.0" +rayon = "1.5.1" +structopt = { version = "0.3.26", default-features = false, features = ["wrap_help"] } +tempfile = "3.3.0" # http server -askama = "0.10.5" -askama_warp = "0.10.0" -bytes = "0.5.6" +askama = "0.11.1" +askama_warp = "0.12.0" +bytes = "1.1.0" either = "1.6.1" -flate2 = "1.0.20" -futures = "0.3.12" -serde = { version = "1.0.123", features = ["derive"] } -serde_json = { version = "1.0.62", features = ["preserve_order"] } -tokio = { version = "0.2.25", features = ["full"] } -warp = "0.2.5" +flate2 = "1.0.22" +futures = "0.3.21" +serde = { version = "1.0.136", features = ["derive"] } +serde_json = { version = "1.0.79", features = ["preserve_order"] } +tokio = { version = "1.17.0", features = ["full"] } +warp = "0.3.2" # logging log = "0.4.14" stderrlog = "0.5.1" -fst = "0.4.5" +fst = "0.4.7" # Temporary fix for bitvec, remove once fixed. (https://github.com/bitvecto-rs/bitvec/issues/105) -funty = "=1.1" -bimap = "0.6.1" +funty = "2.0.0" +bimap = "0.6.2" csv = "1.1.6" [dev-dependencies] maplit = "1.0.2" -serde_test = "1.0.125" +serde_test = "1.0.136" [target.'cfg(target_os = "linux")'.dependencies] jemallocator = "0.3.2" diff --git a/infos/Cargo.toml b/infos/Cargo.toml index 41c9241ba..2863695f0 100644 --- a/infos/Cargo.toml +++ b/infos/Cargo.toml @@ -5,15 +5,15 @@ authors = ["Clément Renault "] edition = "2018" [dependencies] -anyhow = "1.0.38" -byte-unit = { version = "4.0.9", default-features = false, features = ["std"] } -csv = "1.1.5" +anyhow = "1.0.56" +byte-unit = { version = "4.0.14", default-features = false, features = ["std"] } +csv = "1.1.6" heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1" } milli = { path = "../milli" } -roaring = "0.6.6" -serde_json = "1.0.62" +roaring = "0.9.0" +serde_json = "1.0.79" stderrlog = "0.5.1" -structopt = { version = "0.3.21", default-features = false } +structopt = { version = "0.3.26", default-features = false } [target.'cfg(target_os = "linux")'.dependencies] jemallocator = "0.3.2" diff --git a/milli/Cargo.toml b/milli/Cargo.toml index 107674db1..ef89e7819 100644 --- a/milli/Cargo.toml +++ b/milli/Cargo.toml @@ -5,50 +5,50 @@ authors = ["Kerollmops "] edition = "2018" [dependencies] -bimap = { version = "0.6.1", features = ["serde"] } +bimap = { version = "0.6.2", features = ["serde"] } bincode = "1.3.3" -bstr = "0.2.15" -byteorder = "1.4.2" +bstr = "0.2.17" +byteorder = "1.4.3" concat-arrays = "0.1.2" -crossbeam-channel = "0.5.1" +crossbeam-channel = "0.5.2" either = "1.6.1" -fst = "0.4.5" +fst = "0.4.7" fxhash = "0.2.1" grenad = { version = "0.4.1", default-features = false, features = ["tempfile"] } geoutils = "0.4.1" heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1", default-features = false, features = ["lmdb", "sync-read-txn"] } -levenshtein_automata = { version = "0.2.0", features = ["fst_automaton"] } -meilisearch-tokenizer = { git = "https://github.com/meilisearch/tokenizer.git", tag = "v0.2.7" } -memmap2 = "0.5.0" +levenshtein_automata = { version = "0.2.1", features = ["fst_automaton"] } +meilisearch-tokenizer = { git = "https://github.com/meilisearch/tokenizer.git", tag = "v0.2.8" } +memmap2 = "0.5.3" obkv = "0.2.0" -once_cell = "1.5.2" -ordered-float = "2.1.1" -rayon = "1.5.0" -roaring = "0.6.6" -rstar = { version = "0.9.1", features = ["serde"] } -serde = { version = "1.0.123", features = ["derive"] } -serde_json = { version = "1.0.62", features = ["preserve_order"] } -slice-group-by = "0.2.6" -smallstr = { version = "0.2.0", features = ["serde"] } -smallvec = "1.6.1" -tempfile = "3.2.0" +once_cell = "1.10.0" +ordered-float = "2.10.0" +rayon = "1.5.1" +roaring = "0.9.0" +rstar = { version = "0.9.2", features = ["serde"] } +serde = { version = "1.0.136", features = ["derive"] } +serde_json = { version = "1.0.79", features = ["preserve_order"] } +slice-group-by = "0.3.0" +smallstr = { version = "0.3.0", features = ["serde"] } +smallvec = "1.8.0" +tempfile = "3.3.0" time = { version = "0.3.7", features = ["serde-well-known", "formatting", "parsing", "macros"] } uuid = { version = "0.8.2", features = ["v4"] } filter-parser = { path = "../filter-parser" } # documents words self-join -itertools = "0.10.0" +itertools = "0.10.3" # logging log = "0.4.14" -logging_timer = "1.0.0" +logging_timer = "1.1.0" csv = "1.1.6" [dev-dependencies] big_s = "1.0.2" maplit = "1.0.2" -rand = "0.8.3" +rand = "0.8.5" [features] default = []