mirror of
https://codeberg.org/icewind/ugc-scaper.git
synced 2026-06-03 10:14:11 +02:00
cleanups, tests, clippy
This commit is contained in:
parent
d937dbbb5e
commit
a9a3751067
16 changed files with 5932 additions and 117 deletions
21
Cargo.toml
21
Cargo.toml
|
|
@ -2,14 +2,27 @@
|
|||
name = "ugc-scraper"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.67"
|
||||
rust-version = "1.67.0"
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread", "rt"] }
|
||||
tokio = "1.34.0"
|
||||
reqwest = "0.11.22"
|
||||
scraper = "0.18.1"
|
||||
miette = "5.10.0"
|
||||
thiserror = "1.0.50"
|
||||
main_error = "0.1.2"
|
||||
time = { version = "0.3.30", features = ["parsing", "macros"] }
|
||||
steamid-ng = "1.0.0"
|
||||
steamid-ng = "1.0.0"
|
||||
serde = { version = "1.0.192", features = ["derive"], optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread", "rt"] }
|
||||
main_error = "0.1.2"
|
||||
insta = { version = "1.34.0", features = ["json"] }
|
||||
|
||||
[profile.dev.package]
|
||||
insta.opt-level = 3
|
||||
similar.opt-level = 3
|
||||
|
||||
[features]
|
||||
serde = ["dep:serde", "time/serde"]
|
||||
default = ["serde"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue