Moved ebay scraping into separate directory and added rust version

This commit is contained in:
2025-05-29 00:29:53 -04:00
parent 89bd668a9c
commit c1af98d1c2
12 changed files with 2806 additions and 0 deletions

View File

@ -0,0 +1,19 @@
[package]
name = "ebay_scraper_rust"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.4", features = ["derive"] }
reqwest = { version = "0.11", features = ["json", "stream"] } # Removed "blocking" as we use tokio
scraper = "0.18"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1.10"
tokio = { version = "1", features = ["full"] }
url = "2.5"
# path-slash is not strictly needed if using std::path::PathBuf correctly
bytes = "1.5"
chrono = { version = "0.4", features = ["serde"] }
lazy_static = "1.4.0"
futures = "0.3" # For join_all on async tasks