Moved ebay scraping into separate directory and added rust version
This commit is contained in:
19
ebay_storage/rust/Cargo.toml
Normal file
19
ebay_storage/rust/Cargo.toml
Normal 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
|
Reference in New Issue
Block a user