-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
39 lines (34 loc) · 1.01 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
[package]
name = "twitch-hls-client"
version = "1.3.12"
edition = "2021"
rust-version = "1.80"
authors = ["2bc4 <[email protected]>"]
description = "Minimal CLI client for watching/recording Twitch streams"
license = "GPL-3.0-or-later"
repository = "https://github.com/2bc4/twitch-hls-client"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
module-name-repetitions = "allow"
ref-option = "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"
flate2 = "1.0"
getrandom = { version = "0.2", features = ["std"] }
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"