-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
68 lines (60 loc) · 1.34 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
[package]
name = "imdb-id"
description = "Get IMDb IDs using a commandline search tool"
categories = ["command-line-utilities"]
version = "3.0.7"
edition = "2021"
rust-version = "1.70"
authors = ["alpha-tango-kilo <[email protected]>"]
readme = "README.md"
license = "GPL-3.0-only"
homepage = "https://codeberg.org/alpha-tango-kilo/imdb-id"
repository = "https://codeberg.org/alpha-tango-kilo/imdb-id"
[dependencies]
bitflags = "2.4"
crossterm = "0.27"
dirs = "5.0"
humantime = "2.1"
itertools = "0.12"
jsonxf = "1.1"
lazy-regex = "3.0"
opener = "0.6"
once_cell = "1.12"
ratatui = "0.25"
serde_json = "1.0"
# https://rustsec.org/advisories/RUSTSEC-2018-0005.html
serde_yaml = { version = ">=0.8.4", optional = true }
# https://rustsec.org/advisories/RUSTSEC-2021-0003.html
smallvec = ">=1.6.1"
thiserror = "1.0"
trim-in-place = "0.1"
urlencoding = "2.1"
[dependencies.clap]
version = "4.4"
default-features = false
features = [
"std",
"help",
"usage",
"color",
"error-context",
"deprecated",
]
[dependencies.dialoguer]
version = "0.11"
default-features = false
[dependencies.minreq]
version = "2.5"
features = ["https-rustls"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.textwrap]
version = "0.16"
default-features = false
features = ["smawk"]
[features]
default = []
yaml = ["serde_yaml"]
[profile.release]
lto = true