-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
37 lines (33 loc) · 1012 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
29
30
31
32
33
34
35
36
[package]
name = "pipr"
version = "0.0.16"
authors = ["Leon Kowarschick"]
edition = "2018"
license = "MIT"
publish = true
repository = "https://github.com/Elkowar/pipr"
readme = "Readme.md"
description = "A commandline-utility to interactively build complex shell pipelines"
keywords = ["shell", "cli", "terminal", "utility", "tool"]
categories = ["command-line-utilities", "development-tools", "text-editors"]
exclude = [
"build_docker.sh",
"showcase.gif",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tui = { version = "0.10", default-features = false, features = ['crossterm'] }
config = { version = "0.11", features = ['toml'] }
crossterm = { version = "0.22", features = ['event-stream'] }
failure = "0.1.6"
itertools = "0.10"
unicode-width = "0.1.5"
which = "4.0"
getopts="0.2"
maplit = "1.0"
atty = "0.2"
tokio = { version = "0.2", features = ["full"] }
futures = "0.3.4"
syntect = "4.1.0"
lazy_static = "1.4.0"
ansi-parser = "0.8"