Files
ebay_scraper_rust/Cargo.toml
hak8or 9331b55e08
All checks were successful
Cargo Build & Test / Rust project - latest (1.85.1) (push) Successful in 4m31s
Cargo Build & Test / Rust project - latest (1.86) (push) Successful in 4m40s
Cargo Build & Test / Rust project - latest (1.87) (push) Successful in 4m55s
Cargo Build & Test / Rust project - latest (1.88) (push) Successful in 10m2s
Ehhh, lets rethink this ... (parallel status)
2025-09-01 10:26:37 -04:00

26 lines
787 B
TOML

[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"
lazy_static = "1.5.0"
liblzma = "0.4.2"
rayon = "1.10.0"
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"
strum = { version = "0.27.1", features = ["std", "derive", "phf", "strum_macros"] }
test-log = { version = "0.2.17", features = ["trace"] }
tracing = { version = "0.1.41", features = ["attributes"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[dev-dependencies]
similar-asserts = "1.7.0"