-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (49 loc) · 2.02 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "aw-rss"
version = "0.1.0"
edition = "2021"
description = "Awused's personal rss reader"
readme = "README.md"
license = "MIT"
keywords = ["rss"]
homepage = "https://github.com/awused/aw-rss"
repository = "https://github.com/awused/aw-rss"
[dependencies]
async-channel = "2.3.1"
atom_syndication = { version = "0.12.6", default-features = false }
axum = { version = "0.8.1", default-features = false, features = ["http1", "json", "tokio", "tracing", "tower-log"]}
awconf = { git = "https://github.com/awused/awconf" }
chrono = { version = "0.4.39", default-features = false, features = ["clock", "std", "alloc", "serde"] }
clap = { version = "4.5.29", features = ["derive"] }
color-eyre = "0.6.3"
dateparser = "0.2.1"
derive_more = { version = "2.0.1", default-features = false, features = ["from", "deref", "deref_mut"] }
event-listener = "5.4.0"
futures-util = { version = "0.3.31", default-features = false }
humansize = "2.1.3"
humantime = "2.1.0"
# TODO -- this one should get merged into Futures
mapped_futures = "0.1.13"
mime_guess = "2.0.5"
once_cell = "1.20.3"
regex = "1.11.1"
reqwest = { version = "0.12.12", features = ["brotli", "deflate", "json", "gzip", "rustls-tls"] }
rust-embed = { version = "8.5.0", features = ["compression"] }
rss = { version = "2.0.11", default-features = false }
scraper = { version = "0.22.0", default-features = false }
serde = { version = "1.0.217", default-features = false, features = ["derive"] }
sha2 = "0.10.8"
shlex = "1.3.0"
sqlx = { version = "0.8.3", default-features = false, features = ["macros", "chrono", "sqlite", "migrate"] }
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["macros", "process", "rt", "sync", "time"] }
tower = { version = "0.5.2", features = ["limit"] }
tower-http = { version = "0.6.2", features = ["trace", "timeout"] }
tracing = "0.1.41"
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
url = "2.5.4"
[target.'cfg(unix)'.dependencies]
signal-hook = "0.3.17"
[target.'cfg(windows)'.dependencies]
ctrlc = "3.4.5"