-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathCargo.toml
More file actions
95 lines (87 loc) · 3.37 KB
/
Cargo.toml
File metadata and controls
95 lines (87 loc) · 3.37 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[package]
name = "podfetch"
version = "0.1.0"
edition = "2024"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
built = {version="0.8.0", features=["chrono", "semver","cargo-lock"]}
[features]
default = ["sqlite", "postgresql"]
postgresql = ["diesel/postgres", "diesel_migrations/postgres", "dep:r2d2_postgres",
"diesel/postgres_backend", "hyper-tls", "native-tls"]
sqlite = ["diesel/sqlite", "diesel_migrations/sqlite", "dep:libsqlite3-sys", "diesel/returning_clauses_for_sqlite_3_35"]
[dependencies]
rpassword = "7.4.0"
reqwest = { version = "0.12.28", features = ["stream", "json","blocking", "rustls-tls", "trust-dns"]}
tokio-stream = { version = "0.1.18", features = ["sync"] }
async-recursion = "1.1.1"
base64 = "0.22.1"
uuid = {version="1.22.0", features = ["v4", "serde"]}
libsqlite3-sys = {version = "0.35.0", features = ["bundled"], optional = true}
r2d2_postgres = {version = "0.18.2", optional = true}
diesel_migrations = "2.3.1"
jsonwebtoken = {version="10.3.0", features = ["rust_crypto"]}
log = "0.4.29"
futures-util = "0.3.32"
substring = "1.4.5"
opml = "1.1.6"
rand = "0.10.0"
env_logger = "0.11.9"
chrono = {version = "0.4.44", default-features=false, features = ["serde"]}
rss = "2.0.12"
frankenstein = { version = "0.48.0", features = ["client-ureq"] }
regex = "1.12.3"
xml-builder = "0.6.0"
diesel = { version = "2.3.7", features = ["chrono", "r2d2"] }
r2d2 = "0.8.10"
utoipa = { version = "5.4.0", features = ["chrono", "axum_extras"] }
futures = "0.3.32"
utoipa-swagger-ui = {version = "9.0.2", features = ["axum"] }
clokwerk= "0.4.0"
tokio = {version = "1.50.0", features = ["full"]}
serde = "1.0.228"
serde_derive = "1.0.189"
sysinfo = {version = "0.38.4", features = ["serde"]}
fs_extra = "1.3.0"
serde_json = "1.0.149"
thiserror = { version = "2.0.18", features = ["std"] }
sha1 = "0.10.6"
sha256 = "1.6.0"
strfmt="0.2.5"
urlencoding="2.1.3"
id3 = "1.16.4"
mp4ameta = "0.13.0"
file-format = "0.28.0"
maud = { version = "*", features = ["axum","axum-core"] }
url = "2.5.8"
rust-s3 = { version = "0.36.0", features = ["blocking", "fail-on-err", "futures", "tokio", "tokio-rustls-tls"], default-features = false }
async-trait = "0.1.89"
axum = { version = "0.8.8", features = ["macros","http2"] }
tower-http = { version = "0.6.6", features = ["fs"] }
tower = { version = "0.5.3", features = ["util"] }
utoipa-axum = { version = "0.2.0" }
utoipa-rapidoc = { version = "6.0.0",features = ["axum"] }
utoipa-redoc = { version = "6.0.0", features = ["axum"] }
utoipa-scalar = { version = "0.3.0", features = ["axum"] }
axum-extra={version = "0.12.5", features = ["cookie", "query"]}
axum-test = "19.1.1"
socketioxide = "0.18.2"
mime_guess = "2.0.5"
indexmap = "2"
[target.'cfg(not(windows))'.dependencies]
hyper-tls = {version = "0.6.0", optional = true}
native-tls = {version = "0.2.15", optional = true}
[dev-dependencies]
serial_test = {version="3.4.0"}
testcontainers = { version = "0.24.0" }
testcontainers-modules = { version = "0.12.1", features = ["postgres","blocking"] }
derive_builder = {version = "0.20.2"}
fake = { version = "5.0.0", features = ["chrono", "url"] }
bollard = {version = "*", features = ["rustls", "rustls-native-certs"], default-features = false}
axum-test = "19.1.1"
[profile.release]
debug = true
# disable debug symbols for all packages except this one
[profile.release.package."*"]
debug = false