From b6b4b6bab7563180475d0f306886870086804a32 Mon Sep 17 00:00:00 2001 From: Louis Dureuil Date: Tue, 19 Mar 2024 15:43:12 +0100 Subject: [PATCH] Remove the tokio and the reqwests --- Cargo.lock | 3 --- milli/Cargo.toml | 6 ------ 2 files changed, 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 60d0e4c0e..6a8c20f12 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3338,7 +3338,6 @@ dependencies = [ "filter-parser", "flatten-serde-json", "fst", - "futures", "fxhash", "geoutils", "grenad", @@ -3362,7 +3361,6 @@ dependencies = [ "rand", "rand_pcg", "rayon", - "reqwest", "roaring", "rstar", "serde", @@ -3376,7 +3374,6 @@ dependencies = [ "tiktoken-rs", "time", "tokenizers", - "tokio", "tracing", "ureq", "uuid", diff --git a/milli/Cargo.toml b/milli/Cargo.toml index 59b3699cc..4833ad00b 100644 --- a/milli/Cargo.toml +++ b/milli/Cargo.toml @@ -80,12 +80,6 @@ tokenizers = { git = "https://github.com/huggingface/tokenizers.git", tag = "v0. hf-hub = { git = "https://github.com/dureuill/hf-hub.git", branch = "rust_tls", default_features = false, features = [ "online", ] } -tokio = { version = "1.35.1", features = ["rt"] } -futures = "0.3.30" -reqwest = { version = "0.11.23", features = [ - "rustls-tls", - "json", -], default-features = false } tiktoken-rs = "0.5.8" liquid = "0.26.4" arroy = "0.2.0"