forked from fredmorcos/tvrank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (66 loc) · 1.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "tvrank"
version = "0.7.4"
edition = "2021"
description = "Query and sort information about movies and series"
authors = ["Fred Morcos <[email protected]>"]
license = "MIT"
homepage = "https://github.com/fredmorcos/tvrank"
repository = "https://github.com/fredmorcos/tvrank"
readme = "README.md"
keywords = ["tv", "series", "movies", "imdb", "rank"]
categories = ["caching", "command-line-utilities", "filesystem", "multimedia::video", "parsing"]
exclude = ["/attic", "/.github", "/.gitignore", "/screencasts", "/screenshots"]
[lib]
name = "tvrank"
path = "src/lib.rs"
[[bin]]
name = "tvrank"
path = "src/main.rs"
[dependencies]
env_logger = "0.8"
log = "0.4"
clap = { version = "3.1", features = ["derive"] }
derive_more = "0.99"
# derive-new = "0.5"
enum-utils = "0.1"
serde = { version = "1.0", features = ["derive"] }
# serde_with = "1.9"
serde_json = "1.0"
serde_yaml = "0.8"
csv = "1.1"
regex = "1.5"
directories = "3.0"
# memmap = "0.7"
flate2 = "1.0"
reqwest = { version = "0.11", features = ["blocking"] }
atoi = "0.4"
fnv = "1.0"
# num_cpus = "1.13"
# crossbeam = "0.8"
parking_lot = "0.11"
humantime = "2.1"
prettytable-rs = "0.8"
# titlecase = "1.1"
indicatif = "0.16"
walkdir = "2.3"
tempfile = "3.2"
# deepsize = "0.2"
# bitvec = "0.22"
rayon = "1.5"
# tokio = { version = "1.14", features = ["rt-multi-thread", "macros"] }
aho-corasick = "0.7"
deunicode = "1.3"
indoc = "1.0"
truncatable = "0.1"
[profile.release]
debug = true
[profile.production]
inherits = "release"
debug = false
lto = true
codegen-units = 1
opt-level = 3
incremental = false
overflow-checks = false
panic = "abort"