You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
917 B
26 lines
917 B
[package]
|
|
name = "releasefeed"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-only"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.57"
|
|
askama = "0.11.1"
|
|
axum = { version = "0.5.5", features = ["headers"] }
|
|
deadpool-redis = "0.10.2"
|
|
once_cell = "1.10.0"
|
|
reqwest = { version = "0.11.10", features = ["json", "gzip"] }
|
|
scraper = { version = "0.13.0", default-features = false }
|
|
serde = { version = "1.0.137", features = ["derive", "rc"] }
|
|
serde_json = "1.0.81"
|
|
time = { version = "0.3.9", features = ["serde", "formatting", "parsing", "macros"] }
|
|
tokio = { version = "1.18.2", features = ["full"] }
|
|
toml = "0.5.9"
|
|
tower-http = { version = "0.3.3", features = ["trace", "compression-full"] }
|
|
tracing = "0.1.34"
|
|
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
|
|
url = { version = "2.2.2", features = ["serde"] }
|