Hi there
I've written a console application in Rust and would like some feedback on where I could improve:
- readability
- pitfalls
- general usage of Rust
The source code is located here feed2html_rs
My program reads a list of RSS or Atom feeds from a SQLite3 database and saves the entries back the database. Code for this is located in the src/read/lib.rs
.
Then it writes all entries to a static HTML file for each feed and this code is located in src/write/lib.rs
.
And lastly is uploads the static HTML files to an FTP server for later browsing and you'll find the code in src/upload/lib.rs
You're welcome to dig into any parts of the code if you want.
I welcome any constructive criticism you might have