| Crates.io | rssto |
| lib.rs | rssto |
| version | 0.2.1 |
| created_at | 2025-06-14 01:28:24.272371+00 |
| updated_at | 2025-11-20 01:05:05.638712+00 |
| description | Convert RSS feeds into multiple formats |
| homepage | |
| repository | https://github.com/YGGverse/rssto |
| max_upload_size | |
| id | 1712015 |
| size | 66,529 |
Convert RSS feeds into multiple formats
cargo install rssto
rssto -c config/example.toml
[!TIP]
- prepend
RUST_LOG=DEBUGto print worker details (supported levels)- append
-u TIMEto run as the daemon withTIMEinterval update- see
rssto --helpto print all available options
rssto by copy the binary compiled into the native system apps destination:
sudo install /home/user/.cargo/bin/rssto /usr/local/bin/rsstosystemd configuration file at /etc/systemd/system/rssto.service:[Unit]
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=rssto
Group=rssto
# Uncomment for debug
# Environment="RUST_LOG=DEBUG"
# Environment="NO_COLOR=1"
ExecStart=/usr/local/bin/rssto -c /path/to/config.toml
StandardOutput=file:///home/rssto/debug.log
StandardError=file:///home/rssto/error.log
[Install]
WantedBy=multi-user.target
useradd -m rssto)systemctl daemon-reload - reload systemd configurationsystemctl enable rssto - enable new servicesystemctl start rssto - start the processsystemctl status rssto - check process launched