-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (35 loc) · 820 Bytes
/
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
[package]
authors = ["Vivek Kushwaha <[email protected]>"]
license = "MIT"
name = "imdb"
version = "0.0.1"
description = "imdb is a library to retrieve information from IMDb"
homepage = "https://github.com/yoursvivek/imdb"
repository = "https://github.com/yoursvivek/imdb"
readme = "README.md"
keywords = ["imdb", "scraping", "movies"]
edition = "2021"
[dependencies]
derive_builder = "0.11.2"
hyper = "0.14.19"
log = "0.4.17"
reqwest = "0.11.11"
scraper = "0.13.0"
url = "2.2.2"
tokio = { version = "1.19.2", features = ["full"] }
[dependencies.serde]
optional = true
version = "1.0.138"
[dependencies.serde_derive]
optional = true
version = "1.0.138"
[dev-dependencies]
colored = "2.0.0"
env_logger = "0.9.0"
glob = "0.3.0"
terminal_size = "0.2.0"
[features]
serde-impls = [
"serde_derive",
"serde",
]