From c37c398a30f42da130142f0b2271d74b2c0465e1 Mon Sep 17 00:00:00 2001 From: Sophie Forrest Date: Tue, 10 Sep 2024 12:41:44 +1200 Subject: feat: downloading Downloading is now done with reqwest. --- Cargo.toml | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 1d95862..0937cad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,9 +4,18 @@ version = "0.1.0" edition = "2021" [dependencies] +futures-util = "0.3.30" +reqwest = "0.12.7" scraper = "0.20.0" serde = { version = "1.0.209", features = ["derive"] } simd-json = "0.13.10" +tokio = { version = "1.40.0", features = [ + "macros", + "fs", + "rt", + "rt-multi-thread", +] } +tokio-stream = "0.1.16" tracing = "0.1.40" tracing-subscriber = "0.3.18" -- cgit 1.4.1