2024-09-03 22:53:57 -04:00
|
|
|
[package]
|
|
|
|
name = "rss-tool"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2025-07-03 20:57:37 -04:00
|
|
|
iced = {git = "https://github.com/iced-rs/iced", branch = "master", features = ["advanced","image","markdown","svg",]}
|
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-30 08:22:25 -04:00
|
|
|
directories = "6.0.0"
|
2025-06-27 19:04:25 -04:00
|
|
|
chrono = "0.4.41"
|
2025-01-10 07:32:12 -05:00
|
|
|
|
|
|
|
[profile.dev]
|
2025-06-27 19:04:25 -04:00
|
|
|
debug=true
|
|
|
|
incremental = true
|
|
|
|
codegen-units = 256
|
2025-01-10 07:32:12 -05:00
|
|
|
|
|
|
|
[profile.release]
|
2025-06-27 19:04:25 -04:00
|
|
|
opt-level = "z"
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
panic = "abort"
|
|
|
|
strip=true
|