forked from BurntSushi/imdb-rename
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 890 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
[package]
name = "imdb-rename"
version = "0.1.5"
authors = ["Andrew Gallant <[email protected]>"]
description = """
A command line utility for searching IMDb and renaming your media files.
"""
documentation = "https://github.com/BurntSushi/imdb-rename"
homepage = "https://github.com/BurntSushi/imdb-rename"
repository = "https://github.com/BurntSushi/imdb-rename"
readme = "README.md"
keywords = ["imdb", "movie", "index", "search", "name"]
license = "Unlicense/MIT"
edition = "2018"
[workspace]
members = ["imdb-eval", "imdb-index"]
[dependencies]
bstr = { version = "0.2.0", default-features = false, features = ["std"] }
clap = "2.32.0"
failure = "0.1"
flate2 = "1"
imdb-index = { version = "0.1.3", path = "imdb-index" }
lazy_static = "1.1"
log = { version = "0.4", features = ["std"] }
regex = "1"
reqwest = "0.9.2"
tabwriter = "1"
walkdir = "2.2.5"
[profile.release]
debug = true