23 lines
441 B
TOML
23 lines
441 B
TOML
[package]
|
|
name = "rss_content"
|
|
version = "0.1.5"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
ego-tree = "0.10.0"
|
|
iced = { git = "https://github.com/iced-rs/iced", version = "0.14.0-dev", features=["markdown"]}
|
|
reqwest = {features=["blocking"], version="0.12.22"}
|
|
rss = "2.0.12"
|
|
scraper = "0.23.1"
|
|
|
|
[profile.dev]
|
|
debug=true
|
|
incremental = true
|
|
codegen-units = 16
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip=true
|