jensmemesclient/cli/Cargo.toml

31 lines
686 B
TOML
Raw Normal View History

2020-12-05 12:08:24 +01:00
[package]
name = "cli"
2020-12-29 14:19:51 +01:00
version = "0.1.2"
2020-12-05 12:08:24 +01:00
authors = ["LordMZTE <lord@mzte.de>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "jm"
path = "src/main.rs"
[dependencies]
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:32:01 +01:00
once_cell = "1.5.2"
2020-12-05 12:08:24 +01:00
opener = "0.4.1"
reqwest = { version = "0.10.9", features = ["stream"] }
serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.60"
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"
lazy_static = "1.4.0"
2020-12-29 14:19:51 +01:00