-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (36 loc) · 1.1 KB
/
Copy pathCargo.toml
File metadata and controls
39 lines (36 loc) · 1.1 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
[package]
name = "bilistream"
version = "0.2.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.9", features = ["json"] }
base64 = "0.22.1"
reqwest = { version = "0.11.27", features = [
"cookies",
"json",
"rustls-tls",
], default-features = false }
reqwest-middleware = { version = "0.1.6", default-features = false }
reqwest-retry = { version = "0.1.5", default-features = false }
tokio = { version = "1", features = ["full"] }
tokio-test = "0.4.2"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
serde_yaml = "0.8"
# execute = "0.2.11"
scraper = "0.13.0"
serde_derive = "1.0.143"
tracing = { version = "0.1.35", features = [
"max_level_debug",
"release_max_level_info",
] }
tracing-subscriber = "0.2.0"
async-trait = "0.1.56"
urlencoding = "2.1.0"
m3u8-rs = "4.0.0"
rand = "0.8.5"
regex = "1.6.0"
prettyish-html = "0.1.0"
gotify = { version = "0.4.0", features = ["app", "rustls-tls"], default-features = false }
tower-http = { version = "0.6.6", features = ["fs"] }