From 4c481a8947d5eadc3074d276333b64c971ebdf9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Lecrenier?= Date: Tue, 4 Oct 2022 11:29:39 +0200 Subject: [PATCH] Upgrade all dependencies --- benchmarks/Cargo.toml | 18 +++++++++--------- cli/Cargo.toml | 12 ++++++------ filter-parser/Cargo.toml | 4 ++-- flatten-serde-json/Cargo.toml | 2 +- json-depth-checker/Cargo.toml | 2 +- milli/Cargo.toml | 36 +++++++++++++++++------------------ 6 files changed, 37 insertions(+), 37 deletions(-) diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index 87c567de9..ee10a1169 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -5,24 +5,24 @@ edition = "2018" publish = false [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" csv = "1.1.6" milli = { path = "../milli", default-features = false } mimalloc = { version = "0.1.29", default-features = false } -serde_json = { version = "1.0.79", features = ["preserve_order"] } +serde_json = { version = "1.0.85", features = ["preserve_order"] } [dev-dependencies] -criterion = { version = "0.3.5", features = ["html_reports"] } +criterion = { version = "0.4.0", features = ["html_reports"] } rand = "0.8.5" rand_chacha = "0.3.1" -roaring = "0.9.0" +roaring = "0.10.1" [build-dependencies] -anyhow = "1.0.56" -bytes = "1.1.0" -convert_case = "0.5.0" -flate2 = "1.0.22" -reqwest = { version = "0.11.9", features = ["blocking", "rustls-tls"], default-features = false } +anyhow = "1.0.65" +bytes = "1.2.1" +convert_case = "0.6.0" +flate2 = "1.0.24" +reqwest = { version = "0.11.12", features = ["blocking", "rustls-tls"], default-features = false } [features] default = ["milli/default"] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f1f5a6beb..62c4b6a73 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -8,15 +8,15 @@ publish = false [dependencies] bimap = "0.6.2" byte-unit = { version = "4.0.14", features = ["serde"] } -color-eyre = "0.6.1" +color-eyre = "0.6.2" csv = "1.1.6" -eyre = "0.6.7" -indicatif = "0.16.2" +eyre = "0.6.8" +indicatif = "0.17.1" milli = { path = "../milli", default-features = false } mimalloc = { version = "0.1.29", default-features = false } -serde = "1.0.136" -serde_json = "1.0.79" -stderrlog = "0.5.1" +serde = "1.0.145" +serde_json = "1.0.85" +stderrlog = "0.5.3" structopt = "0.3.26" [features] diff --git a/filter-parser/Cargo.toml b/filter-parser/Cargo.toml index 684ef44f0..3cccd38a7 100644 --- a/filter-parser/Cargo.toml +++ b/filter-parser/Cargo.toml @@ -6,8 +6,8 @@ description = "The parser for the Meilisearch filter syntax" publish = false [dependencies] -nom = "7.1.0" +nom = "7.1.1" nom_locate = "4.0.0" [dev-dependencies] -insta = "1.18.2" +insta = "1.21.0" diff --git a/flatten-serde-json/Cargo.toml b/flatten-serde-json/Cargo.toml index 27da77b78..cd22b4273 100644 --- a/flatten-serde-json/Cargo.toml +++ b/flatten-serde-json/Cargo.toml @@ -10,7 +10,7 @@ publish = false serde_json = "1.0" [dev-dependencies] -criterion = { version = "0.3", features = ["html_reports"] } +criterion = { version = "0.4.0", features = ["html_reports"] } [[bench]] name = "benchmarks" diff --git a/json-depth-checker/Cargo.toml b/json-depth-checker/Cargo.toml index 460f4a582..d09730332 100644 --- a/json-depth-checker/Cargo.toml +++ b/json-depth-checker/Cargo.toml @@ -9,7 +9,7 @@ publish = false serde_json = "1.0" [dev-dependencies] -criterion = "0.3" +criterion = "0.4.0" [[bench]] name = "depth" diff --git a/milli/Cargo.toml b/milli/Cargo.toml index 8224632ff..a023944e3 100644 --- a/milli/Cargo.toml +++ b/milli/Cargo.toml @@ -7,51 +7,51 @@ edition = "2018" [dependencies] bimap = { version = "0.6.2", features = ["serde"] } bincode = "1.3.3" -bstr = "0.2.17" +bstr = "1.0.1" byteorder = "1.4.3" charabia = { version = "0.6.0", default-features = false } concat-arrays = "0.1.2" -crossbeam-channel = "0.5.2" -either = "1.6.1" +crossbeam-channel = "0.5.6" +either = "1.8.0" flatten-serde-json = { path = "../flatten-serde-json" } fst = "0.4.7" fxhash = "0.2.1" -geoutils = "0.4.1" +geoutils = "0.5.1" grenad = { version = "0.4.3", default-features = false, features = ["tempfile"] } heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.3", default-features = false, features = ["lmdb", "sync-read-txn"] } json-depth-checker = { path = "../json-depth-checker" } levenshtein_automata = { version = "0.2.1", features = ["fst_automaton"] } -memmap2 = "0.5.3" +memmap2 = "0.5.7" obkv = "0.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"] } +once_cell = "1.15.0" +ordered-float = "3.2.0" +rayon = "1.5.3" +roaring = "0.10.1" +rstar = { version = "0.9.3", features = ["serde"] } +serde = { version = "1.0.145", features = ["derive"] } +serde_json = { version = "1.0.85", features = ["preserve_order"] } slice-group-by = "0.3.0" smallstr = { version = "0.3.0", features = ["serde"] } -smallvec = "1.8.0" +smallvec = "1.10.0" smartstring = "1.0.1" tempfile = "3.3.0" -thiserror = "1.0.31" -time = { version = "0.3.7", features = ["serde-well-known", "formatting", "parsing", "macros"] } +thiserror = "1.0.37" +time = { version = "0.3.15", features = ["serde-well-known", "formatting", "parsing", "macros"] } uuid = { version = "1.1.2", features = ["v4"] } filter-parser = { path = "../filter-parser" } # documents words self-join -itertools = "0.10.3" +itertools = "0.10.5" # logging -log = "0.4.14" +log = "0.4.17" logging_timer = "1.1.0" csv = "1.1.6" [dev-dependencies] big_s = "1.0.2" -insta = "1.18.1" +insta = "1.21.0" maplit = "1.0.2" md5 = "0.7.0" rand = "0.8.5"