minor changes

This commit is contained in:
Gabriel 2025-07-22 13:25:30 -04:00
parent 88a6454f57
commit 56a62e96fd
3 changed files with 3 additions and 2 deletions

View file

@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"
[dependencies]
iced = {git = "https://github.com/iced-rs/iced", branch = "master", features = ["image","markdown","svg",]}
iced = { git = "https://github.com/iced-rs/iced", branch = "master", features = ["image", "markdown", "svg"] }
reqwest = { version = "0.12", features= ["blocking"]}
rss = "2.0"
web-sys = "0.3.70"

View file

@ -122,6 +122,7 @@ pub fn store_items(feed: rss::Channel,feed_id: usize) {
}
#[derive(Debug,Clone)]
pub struct FeedItem {
pub item_id: usize,
pub title: String,

View file

@ -1,3 +1,4 @@
#[allow(unused)]
pub mod net;
pub mod ui;
pub mod html;
@ -5,7 +6,6 @@ pub mod db;
pub mod files;
pub mod widgets;
#[allow(dead_code)]
pub fn main() -> iced::Result {
db::initialize();
ui::user_interface()