forked from exKitsune/anime-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 865 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
[package]
name = "anime-cli"
version = "0.1.4"
description = "CLI to find, download and stream anime."
authors = ["Daniel Pham <[email protected]>, Vianney Dupoy de Guitard <[email protected]>"]
license = "GPL-3.0"
edition = "2018"
homepage = "https://github.com/exKitsune/anime-cli"
documentation = "https://github.com/exKitsune/anime-cli"
repository = "https://github.com/exKitsune/anime-cli"
keywords = ["anime", "streaming", "cli", "xdcc"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0"
getopts = "0.2"
pbr = "1.0"
regex = "1"
rand = "0.7"
terminal_size = "0.1"
opener = "0.4"
serde = { version = "1.0", features = ["derive"] }
once_cell = { version = "1.3", features = ["parking_lot"] }
reqwest = { version = "0.10", features = ["blocking", "json", "gzip"] }
mpv = { version = "0.2", optional = true }
[features]
default = ["mpv"]