forked from 2bc4/twitch-hls-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 929 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
[package]
name = "twitch-hls-client"
version = "1.3.5"
authors = ["2bc4 <119853089+2bc4@users.noreply.github.com>"]
description = "Minimal CLI client for watching/recording Twitch streams"
license = "GPL-3.0-or-later"
repository = "https://github.com/2bc4/twitch-hls-client"
edition = "2021"
rust-version = "1.76"
[lints.rust]
unsafe_code = "forbid"
warnings = "deny"
[lints.clippy]
pedantic = "deny"
module-name-repetitions = "allow"
[profile.release]
codegen-units = 1
lto = true
panic = "abort"
strip = true
[features]
default = ["colors"]
colors = []
debug-logging = ["rustls/logging"]
[dependencies]
anyhow = "1.0"
chunked_transfer = "1.5"
fastrand = "2.0"
flate2 = "1.0"
log = { version = "0.4", features = ["std", "max_level_debug"] }
pico-args = { version = "0.5", features = ["eq-separator"] }
rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12"] }
rustls-native-certs = "0.7"