-
Notifications
You must be signed in to change notification settings - Fork 42
/
Cargo.toml
51 lines (49 loc) · 1.15 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
43
44
45
46
47
48
49
50
51
[package]
authors = ["alexhallam <[email protected]>"]
categories = ["command-line-utilities"]
description = "Head, but for CSV files and with color"
edition = "2021"
keywords = ["csv", "tv", "csv-viewer", "csv-pretty-print", "csv-cat"]
license = "Unlicense OR MIT"
name = "tidy-viewer"
readme = "README.md"
repository = "https://github.com/alexhallam/tv"
version = "1.5.2"
[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"
unicode-width = "0.1.11"