jensmemesclient/cli/Cargo.toml

34 lines
734 B
TOML
Raw Normal View History

2020-12-05 12:08:24 +01:00
[package]
name = "cli"
2021-04-12 17:06:24 +02:00
version = "0.1.6"
2020-12-05 12:08:24 +01:00
authors = ["LordMZTE <lord@mzte.de>"]
edition = "2018"
2021-01-05 20:27:15 +01:00
license = "GPL-3.0"
description = "Command-Line-Interface for JensMemes"
[package.metadata.deb]
name = "jensmemes-cli"
2020-12-05 12:08:24 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "jm"
path = "src/main.rs"
[dependencies]
2021-04-01 19:12:23 +02:00
jm_client_core = { path = "../jm_client_core" }
2020-12-05 12:08:24 +01:00
anyhow = "1.0.34"
clap = "2.33.3"
2020-12-06 14:57:14 +01:00
env_logger = "0.8.2"
2020-12-05 22:20:08 +01:00
fuzzy-matcher = "0.3.7"
2020-12-06 14:57:14 +01:00
log = "0.4.11"
2020-12-05 12:08:24 +01:00
opener = "0.4.1"
structopt = "0.3.21"
2020-12-05 22:20:08 +01:00
term-table = "1.3.0"
term_size = "0.3.2"
2020-12-05 12:08:24 +01:00
tokio = { version = "0.2.23", features = ["macros", "fs", "process"] }
2020-12-29 14:19:51 +01:00
url = "2.2.0"
2021-04-01 21:41:34 +02:00
reqwest = { version = "0.10", features = ["stream"] }
2020-12-29 14:19:51 +01:00