1
0
mirror of https://gitlab.com/Anson-Projects/zine.git synced 2025-07-26 16:21:22 +00:00

Use Custom Struct

This commit is contained in:
2024-04-12 05:45:43 +00:00
parent 841af6aa41
commit f2ff3e3640
9 changed files with 630 additions and 400 deletions

View File

@@ -1,7 +1,7 @@
[package]
name = "aggregate_rss_zine"
description = "Aggregate feed of RSS feeds I enjoy in the form of a newspaper."
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = ["Anson Biggs"]
homepage = "https://zine.ansonbiggs.com"
@@ -10,11 +10,14 @@ license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
feed-rs = "1.4.0"
reqwest = { version = "0.11.24", features = ["blocking"] }
maud = "0.26.0"
chrono = "0.4.33"
scraper = "0.19.0"
rayon = "1.8.1"
simple_logger = "4.3.3"
feed-rs = "1.4"
reqwest = { version = "0.12", features = ["blocking"] }
maud = "0.26"
chrono = "0.4"
scraper = "0.19"
rayon = "1.8"
simple_logger = "4.3"
log = "0.4"
[dev-dependencies]
clippy = "0.0.302"