Rust로 마이그레이션

This commit is contained in:
암냥 2026-01-09 09:29:48 +09:00
commit 55f1cdf1bf
No known key found for this signature in database
23 changed files with 3363 additions and 1339 deletions

18
Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "memos-rss-rs"
version = "0.1.0"
edition = "2024"
[dependencies]
serenity = { version = "0.12", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "standard_framework"] }
tokio = { version = "1", features = ["full"] }
rss = "2.0"
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
htmd = "0.1"
anyhow = "1.0"
chrono = "0.4"
sled = "0.34"
dotenvy = "0.15"