-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 751 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 751 Bytes
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
[package]
name = "plex-list"
version = "0.1.8"
description = "List Plex activity via a Tautulli (Plexpy) Server"
readme = "README.md"
edition = "2018"
authors = ["Mike Zeller <mike@mikezeller.net>"]
repository = "https://github.com/papertigers/pls"
keywords = ["plex", "plexpy", "tautulli", "cli"]
license = "MIT"
categories = [
"command-line-utilities"
]
[[bin]]
name = "pls"
path = "src/main.rs"
[dependencies]
clap = "2.33.0"
anyhow = "1.0"
serde_json = "1.0.38"
console = "0.11.2"
dirs = "1.0.5"
toml = "0.5.1"
serde_repr = "0.1.4"
unicode-width = "0.1.5"
unicode-truncate = "0.1.1"
[dependencies.reqwest]
version = "0.11.9"
features = ["blocking", "json", "native-tls-vendored"]
[dependencies.serde]
version = "1.0.88"
features = ["derive"]