-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add all * if n is defined then it will work with extend length width. also updated name to be less terse and more expressive * add row number removal * update docs * cippy changes * clippy changes + formatting * should be right aligned not left aligned this is matches tibble * update the changelog * update README for 1.4.6 prep
- Loading branch information
1 parent
43e45d7
commit af86acc
Showing
8 changed files
with
246 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"cSpell.words": [ | ||
"abcdefghijkl", | ||
"abcdefghijklmnop", | ||
"atsalolikhin", | ||
"briandconnelly", | ||
"colname", | ||
"crossterm", | ||
"floatlike", | ||
"FOLDERID", | ||
"gruv", | ||
"gruvbox", | ||
"spokeo", | ||
"stdoutln", | ||
"structopt", | ||
"truecolor" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,17 +3,35 @@ authors = ["alexhallam <[email protected]>"] | |
categories = ["command-line-utilities"] | ||
description = "Head, but for CSV files and with color" | ||
edition = "2021" | ||
keywords = ["csv", "pretty-print", "data-viewer", "tv", "tabular-data-viewer", "csv-viewer", "csv-pretty-print", "csv-cat", "csv-column"] | ||
keywords = [ | ||
"csv", | ||
"pretty-print", | ||
"data-viewer", | ||
"tv", | ||
"tabular-data-viewer", | ||
"csv-viewer", | ||
"csv-pretty-print", | ||
"csv-cat", | ||
"csv-column", | ||
] | ||
license = "Unlicense/MIT" | ||
name = "tidy-viewer" | ||
readme = "README.md" | ||
repository = "https://github.com/alexhallam/tv" | ||
version = "1.4.5" | ||
version = "1.4.6" | ||
|
||
[package.metadata.deb] | ||
assets = [ | ||
["target/release/tidy-viewer", "usr/bin/", "755"], | ||
["README.md", "usr/share/doc/cargo-deb/README", "644"], | ||
[ | ||
"target/release/tidy-viewer", | ||
"usr/bin/", | ||
"755", | ||
], | ||
[ | ||
"README.md", | ||
"usr/share/doc/cargo-deb/README", | ||
"644", | ||
], | ||
] | ||
depends = "$auto" | ||
extended-description = """\ | ||
|
@@ -36,7 +54,7 @@ itertools = "0.10.0" | |
lazy_static = "1.4.0" | ||
owo-colors = "3.0.1" | ||
regex = "1.5.4" | ||
serde = {version = "1.0", features = ["derive"]} | ||
serde = { version = "1.0", features = ["derive"] } | ||
structopt = "0.3.21" | ||
toml = "0.5" | ||
unicode-truncate = "0.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.