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"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[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"]}
|
reqwest = { version = "0.12", features= ["blocking"]}
|
||||||
rss = "2.0"
|
rss = "2.0"
|
||||||
web-sys = "0.3.70"
|
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 struct FeedItem {
|
||||||
pub item_id: usize,
|
pub item_id: usize,
|
||||||
pub title: String,
|
pub title: String,
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#[allow(unused)]
|
||||||
pub mod net;
|
pub mod net;
|
||||||
pub mod ui;
|
pub mod ui;
|
||||||
pub mod html;
|
pub mod html;
|
||||||
|
@ -5,7 +6,6 @@ pub mod db;
|
||||||
pub mod files;
|
pub mod files;
|
||||||
pub mod widgets;
|
pub mod widgets;
|
||||||
|
|
||||||
#[allow(dead_code)]
|
|
||||||
pub fn main() -> iced::Result {
|
pub fn main() -> iced::Result {
|
||||||
db::initialize();
|
db::initialize();
|
||||||
ui::user_interface()
|
ui::user_interface()
|
||||||
|
|
Loading…
Reference in a new issue