-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
39 lines (36 loc) · 936 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
38
39
[package]
name = "tbf"
description = "Finds VOD playlists on Twitch."
version = "0.11.0"
authors = ["vyneer <[email protected]>"]
edition = "2021"
[dependencies]
log = "0.4"
clap = { version = "3", features = ["derive", "cargo"] }
env_logger = "0.9"
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls-webpki-roots"] }
rayon = "1.5"
sha1 = "0.10.1"
time = { version = "0.3", features = ["parsing", "macros"] }
regex = "1"
indicatif = {version = "*", features = ["rayon"]}
crossterm = "0.25"
scraper = "0.13.0"
url = "2.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
lazy_static = "1.4.0"
colored = "2"
toml = "0.5"
m3u8-rs = "5"
alphanumeric-sort = "1.4.0"
rand = "0.8"
anyhow = "1.0"
strum = { version = "0.24", features = ["derive"] }
semver = "1.0"
guess_host_triple = "0.1"
[dev-dependencies]
tempfile = "3.3"
[profile.release]
lto = true