-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (28 loc) · 1.01 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
[package]
name = "yts"
version = "0.1.0"
edition = "2018"
authors = [ "Florin <[email protected]>" ]
readme = "README.md"
description = "lib and cli tool for crawling movies out of yts.mx"
license = "MIT"
categories = [ "api-bindings", "command-line-utilities", "command-line-interface" ]
keywords = [ "cli", "api", "http", "terminal", "torrents" ]
repository = "https://github.com/florinutz/yts"
[dependencies]
select = "0.6.0-alpha.1"
serde_json = "^1.0"
serde = { version = "^1.0", features = ["derive"] }
url = { version = "2", features = ["serde"] }
chrono = { version = "^0.4", features = ["serde"] }
clap = { version = "3.1.8", features = ["suggestions", "color", "wrap_help", "cargo"] }
strum = { version = "0.24.0", features = ["derive", "strum_macros"] }
reqwest = { version = "^0.11", features = [ "json", "blocking" ] }
cached-path = "^0.5"
colored = "2"
prettytable-rs = "^0.8"
textwrap = { version = "0.15.0", features = [ "hyphenation" ] }
hyphenation = "0.8.0"
log = "0.4"
env_logger = "0.9.0"
actix-web = "4.0.1"