19 lines
604 B
TOML
19 lines
604 B
TOML
[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 |