-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 705 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 705 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
[[bin]]
name = "popcorn"
path = "src/main.rs"
[package]
name = "popcorn_cli"
version = "0.1.2"
edition = "2018"
description = "Thin Popcorn Time client"
keywords = ["cli", "popcorn"]
categories = ["command-line-utilities", "api-bindings"]
repository = "https://github.com/Ru5ty0ne/popcorn_cli"
readme = './README.md'
homepage = "https://github.com/Ru5ty0ne/popcorn_cli"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = ["blocking", "json"] }
anyhow = "1.0.42"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
clap = "2.33.3"
webbrowser = "0.5.5"
nipper = "0.1.9"