First working version

This commit is contained in:
Semubico 2025-07-03 15:16:21 +03:00
commit 8bc7556cf8
6 changed files with 246 additions and 0 deletions

23
Cargo.toml Normal file
View file

@ -0,0 +1,23 @@
[package]
name = "rssserver"
version = "0.1.0"
edition = "2024"
[profile.release]
strip = true
opt-level = "s"
lto = "on"
codegen-units = 1
[dependencies]
anyhow = { version = "1.0.98", default-features = false, features = ["std"] }
axum = { version = "0.8.4", features = ["http2"] }
chrono = "0.4.41"
env_logger = "0.11.8"
feed-rs = "2.3.1"
handlebars = "6.3.2"
log = "0.4.27"
reqwest = { version = "0.12.22", features = ["charset", "h2", "http2", "rustls-tls", "system-proxy"], default-features = false }
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.46.0", features = ["full"] }
toml = "0.8.23"