rss-tool/Cargo.toml
Gabriel e94905c9e6 very minor improvements. I know the AI generated icon is cringe, but it's a placeholder for now. (Doesn't even work on Wayland anyways)
Successfully migrated to iced::application for more fine-grained control over settings.
Added "all-items" view that breaks things slightly.
2025-12-04 15:20:12 -05:00

28 lines
670 B
TOML

[package]
name = "rss-tool"
version = "0.1.0"
edition = "2021"
[dependencies]
iced = { git = "https://github.com/iced-rs/iced", branch = "master", features = ["image", "markdown", "svg"] }
reqwest = { version = "0.12", features= ["blocking","socks"]}
rss = "2.0"
rusqlite = {version=">=0.34",features=['bundled']}
scraper = "0.23.1"
directories = "6.0.0"
chrono = "0.4.41"
rss_content = { git = "https://code.gabe.rocks/gabriel/rss_content", version = "0.1.1" }
url = "2.5.4"
#rfd = "0.15.4" (for importing files)
[profile.dev]
debug=true
incremental = true
codegen-units = 16
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip=true