-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (24 loc) · 837 Bytes
/
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
[package]
name = "kindle-rss-reader"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.95"
axum = { version = "0.7.5", features = ["macros"] }
axum_static = "1.7.1"
chrono = { version = "0.4.39", features = ["serde"] }
envy = "0.4.2"
minijinja = { version = "2.0.2", features = ["loader"] }
regex = "1.11.1"
reqwest = { version = "0.12.5", default-features = false, features=["rustls-tls"] }
rss = "2.0.8"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.138"
sqlite = "0.36.1"
thiserror = "2.0.11"
tokio = { version = "1.38.0", features = ["fs", "io-util", "rt-multi-thread"] }
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["fs"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
uuid = { version = "1.11.0", features = ["serde", "v4"] }