diff --git a/.gitignore b/.gitignore index 7a6a9d0..9335911 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ target Cargo.lock -*.db \ No newline at end of file +*.db +diesel diff --git a/Cargo.toml b/Cargo.toml index 9d8c493..2afcb5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,17 +4,18 @@ version = "0.1.0" edition = "2021" [dependencies] -iced = {git = "https://github.com/iced-rs/iced", branch = "master", features = ["advanced","image","markdown"]} +iced = {git = "https://github.com/iced-rs/iced", branch = "master", features = ["advanced","image","markdown","tokio"]} reqwest = { version = "0.12", features= ["blocking"]} rss = "2.0" web-sys = "0.3.70" mdka = "1.2.10" #Not Sure if this is useful... -rusqlite = {version="0.32",features=['bundled']} +rusqlite = {version=">=0.36",features=['bundled']} html2md = "0.2" regex = "1" +exemplar = ">=0.35.0" [profile.dev] opt-level = 3 [profile.release] -opt-level = 3 \ No newline at end of file +opt-level = 3