-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
95 lines (87 loc) · 3.33 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
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 = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
built = {version="0.7.5", 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.3.1"
reqwest = { version = "0.12.11", features = ["stream", "json","blocking", "rustls-tls"]}
tokio-stream = { version = "0.1.17", features = ["sync"] }
async-recursion = "1.1.1"
base64 = "0.22.1"
uuid = {version="1.11.1", features = ["v4", "serde"]}
libsqlite3-sys = {version = "0.31.0", features = ["bundled"], optional = true}
r2d2_postgres = {version = "0.18.2", optional = true}
diesel_migrations = "2.2.0"
jsonwebtoken = {version="9.3.0"}
log = "0.4.22"
futures-util = "0.3.31"
substring = "1.4.5"
opml = "1.1.6"
rand = "0.9.0"
env_logger = "0.11.6"
chrono = {version = "0.4.39", default-features=false, features = ["serde"]}
rss = "2.0.11"
frankenstein = { version = "0.39.0", features = ["client-ureq"] }
regex = "1.11.0"
xml-builder = "0.5.2"
diesel = { version = "2.2.6", features = ["chrono", "r2d2"] }
r2d2 = "0.8.10"
utoipa = { version = "5.3.1", features = ["chrono", "axum_extras"] }
futures = "0.3.31"
utoipa-swagger-ui = {version = "9.0.0", features = ["axum"] }
clokwerk= "0.4.0"
tokio = {version = "1.43.0", features = ["full"]}
serde = "1.0.217"
serde_derive = "1.0.189"
sysinfo = {version = "0.33.1", features = ["serde"]}
fs_extra = "1.3.0"
serde_json = "1.0.137"
thiserror = { version = "2.0.11", features = ["std"] }
sha1 = "0.10.6"
sha256 = "1.5.0"
strfmt="0.2.4"
urlencoding="2.1.3"
id3 = "1.16.2"
mp4ameta = "0.11.0"
file-format = "0.26.0"
maud = { version = "*", features = ["axum","axum-core"] }
url = "2.5.4"
rust-s3 = { version = "0.36.0-beta.2", features = ["blocking", "fail-on-err", "futures", "tokio", "tokio-rustls-tls"], default-features = false }
async-trait = "0.1.86"
axum = { version = "0.8.1", features = ["macros","http2"] }
tower-http = { version = "0.6.1", features = ["fs"] }
tower = { version = "0.5.2", 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.10.0", features = ["cookie", "query"]}
axum-test = "17.1.0"
socketioxide = "0.16.0"
mime_guess = "2.0.5"
[target.'cfg(not(windows))'.dependencies]
hyper-tls = {version = "0.6.0", optional = true}
native-tls = {version = "0.2.13", optional = true}
[dev-dependencies]
serial_test = {version="3.2.0"}
testcontainers = { version = "0.23.1" }
testcontainers-modules = { version = "0.11.6", features = ["postgres","blocking"] }
ctor = "0.2.9"
derive_builder = {version = "0.20.2"}
fake = { version = "3.1.0", features = ["chrono"] }
bollard = {version = "*", features = ["rustls", "rustls-native-certs"], default-features = false}
axum-test = "17.2.0"
[profile.release]
debug = true
# disable debug symbols for all packages except this one
[profile.release.package."*"]
debug = false