Upgrade the dependencies

This commit is contained in:
Kerollmops 2022-03-14 17:00:53 +01:00
parent 288a879411
commit 63682c2c9a
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4
7 changed files with 68 additions and 68 deletions

View File

@ -6,8 +6,8 @@ publish = false
[dependencies] [dependencies]
milli = { path = "../milli" } milli = { path = "../milli" }
anyhow = "1.0" anyhow = "1.0.56"
serde_json = { version = "1.0.62", features = ["preserve_order"] } serde_json = { version = "1.0.79", features = ["preserve_order"] }
csv = "1.1.6" csv = "1.1.6"
[target.'cfg(target_os = "linux")'.dependencies] [target.'cfg(target_os = "linux")'.dependencies]
@ -15,14 +15,14 @@ jemallocator = "0.3.2"
[dev-dependencies] [dev-dependencies]
heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1" } 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] [build-dependencies]
anyhow = "1.0" anyhow = "1.0.56"
bytes = "1.0" bytes = "1.1.0"
flate2 = "1.0.20" flate2 = "1.0.22"
convert_case = "0.4" convert_case = "0.5.0"
reqwest = { version = "0.11.3", features = ["blocking", "rustls-tls"], default-features = false } reqwest = { version = "0.11.9", features = ["blocking", "rustls-tls"], default-features = false }
[[bench]] [[bench]]
name = "search_songs" name = "search_songs"

View File

@ -8,15 +8,15 @@ description = "A CLI to interact with a milli index"
[dependencies] [dependencies]
indicatif = "0.16.2" indicatif = "0.16.2"
serde = "1.0.129" serde = "1.0.136"
serde_json = "1.0.66" serde_json = "1.0.79"
structopt = "0.3.22" structopt = "0.3.26"
milli = { path = "../milli" } milli = { path = "../milli" }
eyre = "0.6.5" eyre = "0.6.7"
color-eyre = "0.5.11" color-eyre = "0.6.1"
heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1", default-features = false, features = ["lmdb", "sync-read-txn"] } 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"] } byte-unit = { version = "4.0.14", features = ["serde"] }
bimap = "0.6.1" bimap = "0.6.2"
csv = "1.1.6" csv = "1.1.6"
stderrlog = "0.5.1" stderrlog = "0.5.1"

View File

@ -6,5 +6,5 @@ edition = "2021"
# 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]
nom = "7.0.0" nom = "7.1.0"
nom_locate = "4.0.0" nom_locate = "4.0.0"

View File

@ -5,12 +5,12 @@ authors = ["Clément Renault <clement@meilisearch.com>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
anyhow = "1.0.38" anyhow = "1.0.56"
byte-unit = { version = "4.0.9", default-features = false, features = ["std"] } byte-unit = { version = "4.0.14", default-features = false, features = ["std"] }
heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1" } heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1" }
milli = { path = "../milli" } milli = { path = "../milli" }
stderrlog = "0.5.1" 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] [target.'cfg(target_os = "linux")'.dependencies]
jemallocator = "0.3.2" jemallocator = "0.3.2"

View File

@ -6,42 +6,42 @@ authors = ["Clément Renault <clement@meilisearch.com>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
anyhow = "1.0.38" anyhow = "1.0.56"
byte-unit = { version = "4.0.9", default-features = false, features = ["std"] } byte-unit = { version = "4.0.14", default-features = false, features = ["std"] }
crossbeam-channel = "0.5.0" crossbeam-channel = "0.5.2"
heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1" } heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1" }
memmap2 = "0.5.0" memmap2 = "0.5.3"
milli = { path = "../milli" } milli = { path = "../milli" }
once_cell = "1.5.2" once_cell = "1.10.0"
rayon = "1.5.0" rayon = "1.5.1"
structopt = { version = "0.3.21", default-features = false, features = ["wrap_help"] } structopt = { version = "0.3.26", default-features = false, features = ["wrap_help"] }
tempfile = "3.2.0" tempfile = "3.3.0"
# http server # http server
askama = "0.10.5" askama = "0.11.1"
askama_warp = "0.10.0" askama_warp = "0.12.0"
bytes = "0.5.6" bytes = "1.1.0"
either = "1.6.1" either = "1.6.1"
flate2 = "1.0.20" flate2 = "1.0.22"
futures = "0.3.12" futures = "0.3.21"
serde = { version = "1.0.123", features = ["derive"] } serde = { version = "1.0.136", features = ["derive"] }
serde_json = { version = "1.0.62", features = ["preserve_order"] } serde_json = { version = "1.0.79", features = ["preserve_order"] }
tokio = { version = "0.2.25", features = ["full"] } tokio = { version = "1.17.0", features = ["full"] }
warp = "0.2.5" warp = "0.3.2"
# logging # logging
log = "0.4.14" log = "0.4.14"
stderrlog = "0.5.1" 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) # Temporary fix for bitvec, remove once fixed. (https://github.com/bitvecto-rs/bitvec/issues/105)
funty = "=1.1" funty = "2.0.0"
bimap = "0.6.1" bimap = "0.6.2"
csv = "1.1.6" csv = "1.1.6"
[dev-dependencies] [dev-dependencies]
maplit = "1.0.2" maplit = "1.0.2"
serde_test = "1.0.125" serde_test = "1.0.136"
[target.'cfg(target_os = "linux")'.dependencies] [target.'cfg(target_os = "linux")'.dependencies]
jemallocator = "0.3.2" jemallocator = "0.3.2"

View File

@ -5,15 +5,15 @@ authors = ["Clément Renault <clement@meilisearch.com>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
anyhow = "1.0.38" anyhow = "1.0.56"
byte-unit = { version = "4.0.9", default-features = false, features = ["std"] } byte-unit = { version = "4.0.14", default-features = false, features = ["std"] }
csv = "1.1.5" csv = "1.1.6"
heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1" } heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1" }
milli = { path = "../milli" } milli = { path = "../milli" }
roaring = "0.6.6" roaring = "0.9.0"
serde_json = "1.0.62" serde_json = "1.0.79"
stderrlog = "0.5.1" 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] [target.'cfg(target_os = "linux")'.dependencies]
jemallocator = "0.3.2" jemallocator = "0.3.2"

View File

@ -5,50 +5,50 @@ authors = ["Kerollmops <clement@meilisearch.com>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
bimap = { version = "0.6.1", features = ["serde"] } bimap = { version = "0.6.2", features = ["serde"] }
bincode = "1.3.3" bincode = "1.3.3"
bstr = "0.2.15" bstr = "0.2.17"
byteorder = "1.4.2" byteorder = "1.4.3"
concat-arrays = "0.1.2" concat-arrays = "0.1.2"
crossbeam-channel = "0.5.1" crossbeam-channel = "0.5.2"
either = "1.6.1" either = "1.6.1"
fst = "0.4.5" fst = "0.4.7"
fxhash = "0.2.1" fxhash = "0.2.1"
grenad = { version = "0.4.1", default-features = false, features = ["tempfile"] } grenad = { version = "0.4.1", default-features = false, features = ["tempfile"] }
geoutils = "0.4.1" geoutils = "0.4.1"
heed = { git = "https://github.com/meilisearch/heed", tag = "v0.12.1", default-features = false, features = ["lmdb", "sync-read-txn"] } 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"] } levenshtein_automata = { version = "0.2.1", features = ["fst_automaton"] }
meilisearch-tokenizer = { git = "https://github.com/meilisearch/tokenizer.git", tag = "v0.2.7" } meilisearch-tokenizer = { git = "https://github.com/meilisearch/tokenizer.git", tag = "v0.2.8" }
memmap2 = "0.5.0" memmap2 = "0.5.3"
obkv = "0.2.0" obkv = "0.2.0"
once_cell = "1.5.2" once_cell = "1.10.0"
ordered-float = "2.1.1" ordered-float = "2.10.0"
rayon = "1.5.0" rayon = "1.5.1"
roaring = "0.6.6" roaring = "0.9.0"
rstar = { version = "0.9.1", features = ["serde"] } rstar = { version = "0.9.2", features = ["serde"] }
serde = { version = "1.0.123", features = ["derive"] } serde = { version = "1.0.136", features = ["derive"] }
serde_json = { version = "1.0.62", features = ["preserve_order"] } serde_json = { version = "1.0.79", features = ["preserve_order"] }
slice-group-by = "0.2.6" slice-group-by = "0.3.0"
smallstr = { version = "0.2.0", features = ["serde"] } smallstr = { version = "0.3.0", features = ["serde"] }
smallvec = "1.6.1" smallvec = "1.8.0"
tempfile = "3.2.0" tempfile = "3.3.0"
time = { version = "0.3.7", features = ["serde-well-known", "formatting", "parsing", "macros"] } time = { version = "0.3.7", features = ["serde-well-known", "formatting", "parsing", "macros"] }
uuid = { version = "0.8.2", features = ["v4"] } uuid = { version = "0.8.2", features = ["v4"] }
filter-parser = { path = "../filter-parser" } filter-parser = { path = "../filter-parser" }
# documents words self-join # documents words self-join
itertools = "0.10.0" itertools = "0.10.3"
# logging # logging
log = "0.4.14" log = "0.4.14"
logging_timer = "1.0.0" logging_timer = "1.1.0"
csv = "1.1.6" csv = "1.1.6"
[dev-dependencies] [dev-dependencies]
big_s = "1.0.2" big_s = "1.0.2"
maplit = "1.0.2" maplit = "1.0.2"
rand = "0.8.3" rand = "0.8.5"
[features] [features]
default = [] default = []