This commit is contained in:
Robin Appelman 2023-11-18 23:08:30 +01:00
commit 29ba22dd90
2 changed files with 4 additions and 1 deletions

2
api-server/Cargo.lock generated
View file

@ -1743,6 +1743,8 @@ dependencies = [
[[package]] [[package]]
name = "ugc-scraper" name = "ugc-scraper"
version = "0.1.0" version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a65a605e079609b2f105c2f8930a0fb6786766fae5ef8776692cbb8a85b2b56"
dependencies = [ dependencies = [
"reqwest", "reqwest",
"scraper", "scraper",

View file

@ -6,7 +6,8 @@ edition = "2021"
[dependencies] [dependencies]
tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread", "rt"] } tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread", "rt"] }
main_error = "0.1.2" main_error = "0.1.2"
ugc-scraper = { path = "../", version = "0.1" } #ugc-scraper = { path = "../", version = "0.1" }
ugc-scraper = "0.1"
axum = "0.6.20" axum = "0.6.20"
steamid-ng = "1.0.0" steamid-ng = "1.0.0"
thiserror = "1.0.50" thiserror = "1.0.50"