planet-mars/Cargo.toml

25 lines
836 B
TOML
Raw Normal View History

2025-01-10 11:39:54 +02:00
[package]
name = "planet-mars"
version = "0.1.0"
edition = "2021"
2025-01-11 21:44:16 +02:00
authors = ["Thomas Koch <thomas@koch.ro>"]
description = "Feed aggregation planet like Planet Venus, produces static HTML and ATOM feed from fetched feeds."
homepage = "https://github.com/thkoch2001/planet-mars"
license = "AGPL-3.0-or-later"
keywords = ["atom", "rss", "planet", "feed", "blogging"]
categories = ["web-programming"]
2025-01-10 11:39:54 +02:00
[dependencies]
2025-01-10 20:17:06 +02:00
anyhow = "*"
2025-01-10 11:39:54 +02:00
clap = { version = "*", features = ["derive"] }
env_logger = "*"
feed-rs = "*"
log = "*"
ron = "*" # todo for development, to check atom-rs internal representation of feeds
2025-01-10 11:39:54 +02:00
serde = { version = "*", features = ["derive"] }
slug = "*"
tera = "*"
toml = "*"
ureq = { version = "3.0.0-rc5", features = ["brotli", "charset", "gzip", "native-tls"]}
url = "*"
quick-xml = { version = "*", features = ["serialize"] }