30 lines
821 B
TOML
30 lines
821 B
TOML
|
[package]
|
||
|
name = "findpenguins-feed"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
authors = ["Sebastian Hugentobler <shu@vanwa.ch>"]
|
||
|
license = "AGPL-3.0-or-later"
|
||
|
|
||
|
[dependencies]
|
||
|
askama = "0.12.1"
|
||
|
axum = { version = "0.6.20", features = ["tracing"] }
|
||
|
config = { version = "0.13.3", features = ["toml"] }
|
||
|
directories = "5.0.1"
|
||
|
fnv = "1.0.7"
|
||
|
futures = "0.3.29"
|
||
|
reqwest = { version = "0.11.22", default-features = false, features = [
|
||
|
"rustls-tls",
|
||
|
] }
|
||
|
rss = "2.0.6"
|
||
|
scraper = "0.18.1"
|
||
|
serde = "1.0.192"
|
||
|
thiserror = "1.0.50"
|
||
|
time = { version = "0.3.30", features = ["formatting", "parsing", "serde"] }
|
||
|
tokio = { version = "1.34.0", features = ["full"] }
|
||
|
tower-http = { version = "0.4.4", features = ["trace"] }
|
||
|
tracing = "0.1.40"
|
||
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
||
|
|
||
|
[profile.release]
|
||
|
strip = true
|