A simple binary that reads a config file with a list of rss torrent items and adds them to transmission.
```
$ transmission-rss
USAGE:
transmission-rss --config
OPTIONS:
-c, --config
```
$ cargo install transmission-rss
$ transmission-rss -c config.toml
Example of config.toml
:
```toml [persistence] path = "/path/to/db/folder"
[transmission] url = "http://myserver/transmission/rpc" username = "myusername" password = "mypassword"
[[rsslist]] title = "My List" url = "https://someweb.site/rss.xml" filters = ["1080p"] downloaddir = "/downloads/my_folder" ```