-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (51 loc) · 1.55 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (51 loc) · 1.55 KB
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 = "podchive"
description = "Podcast archival tool"
version = "0.1.0"
edition = "2024"
[dependencies]
ammonia = "4.1.2"
anyhow = "1.0.100"
askama = "0.15.4"
axum = { version = "0.8.4", features = ["macros", "multipart", "ws"] }
axum-extra = { version = "0.12.5", features = ["cookie"] }
axum-server = { version = "0.8.0", features = ["tls-rustls"] }
bytes = "1.10.1"
clap = { version = "4.5.48", features = ["derive"] }
deunicode = "1.6.2"
env_logger = "0.11.8"
futures = "0.3.31"
futures-util = "0.3.31"
html-escape = "0.2.13"
id3 = "1.16.4"
image = "0.25.8"
lofty = "0.23.2"
log = "0.4.28"
nanoid = "0.4.0"
once_cell = "1.21.3"
png = "0.18.0"
rand = "0.10.0"
regex = "1.11.2"
reqwest = { version = "0.13.2", features = ["blocking"] }
rss = { version = "2.0.12", features = ["atom"] }
rustls = { version = "0.23.35", features = ["aws-lc-rs"] }
serde = { version = "1.0.226", features = ["derive"] }
serde_json = "1.0.145"
sqlx = { version = "0.8.6", features = [
"macros",
"runtime-tokio",
"sqlite",
"tls-rustls",
"uuid",
] }
time = { version = "0.3.44", features = ["macros"] }
tokio = { version = "1.47.1", features = ["full", "sync"] }
tokio-tungstenite = "0.28.0"
tower = "0.5.2"
tower-http = { version = "0.6.6", features = ["compression-br", "fs", "trace"] }
tower-sessions = "0.15.0"
tower-sessions-sqlx-store = { git = "https://github.com/maxcountryman/tower-sessions-stores", features = ["sqlite"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
uuid = { version = "1.18.1", features = ["v4"] }
webp = "0.3.1"