forked from alexhallam/tv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (40 loc) · 1.1 KB
/
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
37
38
39
40
41
42
[package]
authors = ["alexhallam <[email protected]>"]
categories = ["command-line-utilities"]
description = "Head, but for csvs and with color"
edition = "2021"
keywords = ["csv", "pretty-print", "data-viewer", "tv", "tabular-data-viewer"]
license = "Unlicense/MIT"
name = "tidy-viewer"
readme = "README.md"
repository = "https://github.com/alexhallam/tv"
version = "1.4.4"
[package.metadata.deb]
assets = [
["target/release/tidy-viewer", "usr/bin/", "755"],
["README.md", "usr/share/doc/cargo-deb/README", "644"],
]
depends = "$auto"
extended-description = """\
Tidy Viewer (tv) is a csv pretty printer that uses \
column styling to maximize viewer enjoyment.
"""
license-file = ["UNLICENSE", "0"]
maintainer = "Alex Hallam <[email protected]>"
priority = "optional"
section = "utility"
[dependencies]
atty = "0.2.14"
calm_io = "0.1.1"
console = "0.15.0"
crossterm = "0.22.1"
csv = "1.1.6"
directories = "4.0"
itertools = "0.10.0"
lazy_static = "1.4.0"
owo-colors = "3.0.1"
regex = "1.5.4"
serde = {version = "1.0", features = ["derive"]}
structopt = "0.3.21"
toml = "0.5"
unicode-truncate = "0.2.0"