Update incompatible dependencies

This commit is contained in:
Clément Renault 2024-01-16 15:15:54 +01:00
parent 5869ca7716
commit 7f125bfb12
No known key found for this signature in database
GPG key ID: F250A4C4E3AE5F5F
4 changed files with 111 additions and 48 deletions

View file

@ -13,7 +13,7 @@ license.workspace = true
default-run = "meilisearch"
[dependencies]
actix-cors = "0.6.5"
actix-cors = "0.7.0"
actix-http = { version = "3.5.1", default-features = false, features = [
"compress-brotli",
"compress-gzip",
@ -48,7 +48,7 @@ flate2 = "1.0.28"
fst = "0.4.7"
futures = "0.3.30"
futures-util = "0.3.30"
http = "0.2.11"
http = "1.0.0"
index-scheduler = { path = "../index-scheduler" }
indexmap = { version = "2.1.0", features = ["serde"] }
is-terminal = "0.4.10"
@ -63,7 +63,7 @@ mime = "0.3.17"
num_cpus = "1.16.0"
obkv = "0.2.1"
once_cell = "1.19.0"
ordered-float = "3.9.2"
ordered-float = "4.2.0"
parking_lot = "0.12.1"
permissive-json-pointer = { path = "../permissive-json-pointer" }
pin-project-lite = "0.2.13"
@ -77,16 +77,16 @@ reqwest = { version = "0.11.23", features = [
"rustls-tls",
"json",
], default-features = false }
rustls = "0.20.9"
rustls-pemfile = "1.0.4"
rustls = "0.22.2"
rustls-pemfile = "2.0.0"
segment = { version = "0.2.3", optional = true }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = { version = "1.0.111", features = ["preserve_order"] }
sha2 = "0.10.8"
siphasher = "0.3.11"
siphasher = "1.0.0"
slice-group-by = "0.3.1"
static-files = { version = "0.2.3", optional = true }
sysinfo = "0.29.11"
sysinfo = "0.30.5"
tar = "0.4.40"
tempfile = "3.9.0"
thiserror = "1.0.56"
@ -98,7 +98,7 @@ time = { version = "0.3.31", features = [
] }
tokio = { version = "1.35.1", features = ["full"] }
tokio-stream = "0.1.14"
toml = "0.7.8"
toml = "0.8.8"
uuid = { version = "1.6.1", features = ["serde", "v4"] }
walkdir = "2.4.0"
yaup = "0.2.1"
@ -120,7 +120,7 @@ yaup = "0.2.1"
[build-dependencies]
anyhow = { version = "1.0.79", optional = true }
cargo_toml = { version = "0.15.3", optional = true }
cargo_toml = { version = "0.18.0", optional = true }
hex = { version = "0.4.3", optional = true }
reqwest = { version = "0.11.23", features = [
"blocking",