minor changes
This commit is contained in:
parent
88a6454f57
commit
56a62e96fd
3 changed files with 3 additions and 2 deletions
|
@ -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"
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue