diff --git a/Cargo.lock b/Cargo.lock index 48efe3aee..8092ef34b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -293,18 +293,6 @@ dependencies = [ "backtrace", ] -[[package]] -name = "arc-swap" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5d78ce20460b82d3fa150275ed9d55e21064fc7951177baacf86a145c4a4b1f" - -[[package]] -name = "arrayvec" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" - [[package]] name = "as-slice" version = "0.1.5" @@ -1085,7 +1073,7 @@ name = "filter-parser" version = "0.1.0" source = "git+https://github.com/meilisearch/milli.git?tag=v0.24.0#5863afa1a568950de2928ba2d78b95aee243dad1" dependencies = [ - "nom 7.1.1", + "nom", "nom_locate", ] @@ -1594,15 +1582,6 @@ version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35e70ee094dc02fd9c13fdad4940090f22dbd6ac7c9e7094a46cf0232a50bc7c" -[[package]] -name = "iso8601-duration" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b51dd97fa24074214b9eb14da518957573f4dec3189112610ae1ccec9ac464" -dependencies = [ - "nom 5.1.2", -] - [[package]] name = "itertools" version = "0.10.3" @@ -1692,19 +1671,6 @@ dependencies = [ "fst", ] -[[package]] -name = "lexical-core" -version = "0.7.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe" -dependencies = [ - "arrayvec", - "bitflags", - "cfg-if 1.0.0", - "ryu", - "static_assertions", -] - [[package]] name = "libc" version = "0.2.120" @@ -1956,7 +1922,6 @@ dependencies = [ "actix-web", "actix-web-static-files", "anyhow", - "arc-swap", "assert-json-diff", "async-stream", "async-trait", @@ -1975,7 +1940,6 @@ dependencies = [ "hex", "http", "indexmap", - "iso8601-duration", "itertools", "jsonwebtoken", "log", @@ -2060,7 +2024,6 @@ dependencies = [ "once_cell", "parking_lot 0.11.2", "paste", - "pin-project", "proptest", "proptest-derive", "rand", @@ -2271,17 +2234,6 @@ name = "nelson" version = "0.1.0" source = "git+https://github.com/MarinPostma/nelson.git?rev=675f13885548fb415ead8fbb447e9e6d9314000a#675f13885548fb415ead8fbb447e9e6d9314000a" -[[package]] -name = "nom" -version = "5.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af" -dependencies = [ - "lexical-core", - "memchr", - "version_check", -] - [[package]] name = "nom" version = "7.1.1" @@ -2300,7 +2252,7 @@ checksum = "37794436ca3029a3089e0b95d42da1f0b565ad271e4d3bb4bad0c7bb70b10605" dependencies = [ "bytecount", "memchr", - "nom 7.1.1", + "nom", ] [[package]] @@ -2585,26 +2537,6 @@ dependencies = [ "siphasher", ] -[[package]] -name = "pin-project" -version = "1.0.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e" -dependencies = [ - "pin-project-internal", -] - -[[package]] -name = "pin-project-internal" -version = "1.0.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb" -dependencies = [ - "proc-macro2 1.0.36", - "quote 1.0.15", - "syn 1.0.88", -] - [[package]] name = "pin-project-lite" version = "0.2.8" @@ -3325,12 +3257,6 @@ dependencies = [ "path-slash", ] -[[package]] -name = "static_assertions" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" - [[package]] name = "strsim" version = "0.10.0" diff --git a/meilisearch-http/Cargo.toml b/meilisearch-http/Cargo.toml index 65f71bbff..21b707535 100644 --- a/meilisearch-http/Cargo.toml +++ b/meilisearch-http/Cargo.toml @@ -26,7 +26,6 @@ actix-cors = "0.6" actix-web = { version = "4", features = ["rustls"] } actix-web-static-files = { git = "https://github.com/kilork/actix-web-static-files.git", rev = "2d3b6160", optional = true } anyhow = { version = "1.0.43", features = ["backtrace"] } -arc-swap = "1.3.2" async-stream = "0.3.2" async-trait = "0.1.51" bstr = "0.2.17" @@ -41,7 +40,6 @@ futures = "0.3.17" futures-util = "0.3.17" http = "0.2.4" indexmap = { version = "1.7.0", features = ["serde-1"] } -iso8601-duration = "0.1.0" itertools = "0.10.1" jsonwebtoken = "7" log = "0.4.14" diff --git a/meilisearch-lib/Cargo.toml b/meilisearch-lib/Cargo.toml index 03591fb7d..bdf0db72a 100644 --- a/meilisearch-lib/Cargo.toml +++ b/meilisearch-lib/Cargo.toml @@ -48,7 +48,6 @@ tokio = { version = "1.11.0", features = ["full"] } uuid = { version = "0.8.2", features = ["serde"] } walkdir = "2.3.2" obkv = "0.2.0" -pin-project = "1.0.8" whoami = { version = "1.1.3", optional = true } reqwest = { version = "0.11.4", features = ["json", "rustls-tls"], default-features = false, optional = true } sysinfo = "0.20.2"