-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (23 loc) · 766 Bytes
/
Cargo.toml
File metadata and controls
28 lines (23 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "psref_scraper"
version = "0.2.0"
description = "A Rust-based scraper for the Lenovo PSREF website to extract and process product specifications."
repository = "https://github.com/sakgoyal/Lenovo_psref_DB"
edition = "2024"
license = "GPL-3.0-only"
authors = ["Saksham Goyal <sakgoy2001@gmail.com>"]
categories = [
"command-line-utilities",
"database",
"data-processing",
"text-processing",
]
[dependencies]
reqwest = { version = "0.13.1", features = ["blocking", "json"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = {version = "1.0.149", features = ["preserve_order"]}
regex = "1.12.3"
polars = { version = "0.53", features = ["parquet", "lazy", "diagonal_concat"] }
[[bin]]
name = "psref_scraper"
path = "main.rs"