2024-09-03 22:53:57 -04:00
|
|
|
[package]
|
|
|
|
name = "rss-tool"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2025-05-28 14:50:50 -04:00
|
|
|
iced = {git = "https://github.com/iced-rs/iced", branch = "master", features = ["advanced","image","markdown","tokio"]}
|
2024-09-03 22:53:57 -04:00
|
|
|
reqwest = { version = "0.12", features= ["blocking"]}
|
|
|
|
rss = "2.0"
|
|
|
|
web-sys = "0.3.70"
|
2025-01-10 07:32:12 -05:00
|
|
|
mdka = "1.2.10" #Not Sure if this is useful...
|
2025-05-29 12:07:36 -04:00
|
|
|
rusqlite = {version=">=0.34",features=['bundled']}
|
2025-01-10 07:32:12 -05:00
|
|
|
html2md = "0.2"
|
|
|
|
regex = "1"
|
2025-05-29 12:07:36 -04:00
|
|
|
directories-next = "2.0.0"
|
2025-05-30 08:22:25 -04:00
|
|
|
directories = "6.0.0"
|
2025-01-10 07:32:12 -05:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 3
|
|
|
|
|
|
|
|
[profile.release]
|
2025-05-28 14:50:50 -04:00
|
|
|
opt-level = 3
|