-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
37 lines (34 loc) · 944 Bytes
/
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
[package]
name = "bilistream"
version = "0.1.11"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.27", features = [
"cookies",
"json",
"rustls-tls",
], default-features = false }
reqwest-middleware = "0.1.6"
reqwest-retry = "0.1.5"
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"
openssl = { version = "0.10.66", features = ["vendored"] }
gotify = { version = "0.4.0", features = ["app"] }