-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
43 lines (39 loc) · 1.16 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
[package]
authors = ["[email protected]"]
edition = "2021"
name = "vod2pod-rss"
version = "1.2.4"
[lib]
path = "src/lib.rs"
[[bin]]
name = "app"
path = "src/main.rs"
[dependencies]
actix-rt = "=2.10.0"
google-youtube3 = "=5.0.4"
actix-web = "=4.9.0"
async-trait = "=0.1.86"
url = { version="=2.5.4", features = ["serde"]}
futures = "=0.3.31"
log = "=0.4.25"
regex = "=1.11.1"
reqwest = { version = "=0.12.12", features = ["json"] }
serde = "=1.0.217"
serde_json = "=1.0.138"
tokio = { version = "=1.43.0", features = ["macros", "process"]}
uuid = { version= "=1.12.1", features = ["v4", "serde"]}
genawaiter = {version = "=0.99", features = ["futures03"] }
openssl = { version = "*", features = ["vendored"] } #this is here just to make cross-compiling work during github actions
rss = { version = "=2.0", features = ["serde"] }
eyre = "=0.6"
simple_logger = "=5.0"
redis = { version = "=0.28", features = ["tokio-comp"] }
mime = "=0.3.17"
cached = { version = "=0.54.0", features = ["redis_tokio"] }
iso8601-duration = "=0.2.0"
chrono = "=0.4.39"
feed-rs = "=2.3.1"
[dev-dependencies]
temp-env ={ version = "=0.3.6", features = ["async_closure"] }
env_logger = "*"
test-log = "0.2.11"