This commit is contained in:
rattatwinko
2025-05-02 17:33:21 +02:00
commit 1bfa72db56
10 changed files with 2556 additions and 0 deletions

19
Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "crawler"
version = "0.1.0"
edition = "2024"
[dependencies]
tokio = { version = "1.28", features = ["full"] }
reqwest = { version = "0.11", features = ["json"] }
futures = "0.3"
scraper = "0.17"
structopt = "0.3"
indicatif = "0.17"
colored = "2.0"
regex = "1.10"
url = "2.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
csv = "1.2"
clap = "2.34.0"