-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (34 loc) · 826 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (34 loc) · 826 Bytes
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
40
41
cargo-features = ["trim-paths"]
[package]
name = "YouTubeTLDR"
version = "1.7.0"
edition = "2024"
readme = "README.md"
license = "MIT"
[dependencies]
minreq = { git = "https://github.com/Milkshiift/minreq", features = ["proxy"] }
miniserde = { git = "https://github.com/Milkshiift/miniserde" }
flume = "0.12.0"
[build-dependencies]
minifier = "0.3.6"
flate2 = "1.1.9"
[features]
default = ["native-tls"]
native-tls = ["minreq/https-native"]
rustls-tls = ["minreq/https-rustls"]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
trim-paths = "all"
[profile.dev]
opt-level = 1
incremental = true
[lints.clippy]
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
unwrap_used = "deny"
cast_sign_loss = "allow"
cast_possible_truncation = "allow"