Initial rough commit
All checks were successful
Cargo Build & Test / Rust project - latest (1.88) (push) Successful in 3m30s
Cargo Build & Test / Rust project - latest (1.85.1) (push) Successful in 4m1s
Cargo Build & Test / Rust project - latest (1.87) (push) Successful in 4m5s
Cargo Build & Test / Rust project - latest (1.86) (push) Successful in 9m41s

This commit is contained in:
2025-06-22 03:00:41 -04:00
parent 5975323678
commit b9cc62e3dd
21 changed files with 12386 additions and 0 deletions

24
Cargo.toml Normal file
View File

@ -0,0 +1,24 @@
[package]
name = "ebay_scraper_rust"
version = "0.1.0"
edition = "2024"
[dependencies]
actix-web = "4.11.0"
chrono = { version = "0.4.41", features = ["serde"] }
clap = { version = "4.5.40", features = ["derive"] }
dirs = "6.0.0"
env_logger = "0.11.8"
lazy_static = "1.5.0"
log = "0.4.27"
regex = "1.11.1"
rusqlite = { version = "0.36.0", features = ["bundled", "chrono"] }
scraper = "0.23.1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
test-log = { version = "0.2.17", features = ["trace"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
[dev-dependencies]
similar-asserts = "1.7.0"