-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
50 lines (46 loc) · 1.12 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
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "youtube-dl-wrapper"
version = "0.1.0"
authors = ["Milo Mirate <[email protected]>"]
edition = "2018"
[dependencies]
anyhow = "1"
base64 = "<2"
base64-serde = "0.6"
chrono = { version = "0.4", features = ["serde"] }
crossbeam-channel = "0.5"
crossbeam-queue = "0.3"
crossbeam-utils = "0.8"
ctrlc = { version = "3", features = ["termination"] }
dashmap = "5.3"
derivative = "2"
duct = "0.13"
env_logger = "0.9"
extension-trait = "1"
fs3 = "0.5"
glob = "0.3"
hex = { version = "0.4", features = ["serde"] }
itertools = "0.10"
jemallocator-global = "0.3"
kuchiki = "0.8"
log = "0.4"
num_cpus = "1"
once_cell = { version = "1", features = ["parking_lot"] }
parking_lot = { version = "0.12", features = ["serde"] }
rand = "0.8"
rayon = "1"
regex = "1"
regex-syntax = "*"
reqwest = { version = "0.11", default-features = false, features = ["json", "blocking", "gzip", "brotli", "rustls-tls"] }
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
structopt = "0.3"
[profile.release]
# panic = "abort"
incremental = true
lto = "thin"
[profile.dev]
# panic = "abort"
opt-level = 1
[profile.dev.package."*"]
opt-level = 1