-
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.
* update libs and rust edition * add -a flag * add more details in help * add ci code * upgrade to macOS-11 from macOS-latest * remove rustup but update rust version * prep new patch for new flag * spelling * add rustup in the right place
- Loading branch information
1 parent
b430773
commit 3145b29
Showing
7 changed files
with
82 additions
and
58 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
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
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 |
---|---|---|
|
@@ -2,13 +2,13 @@ | |
authors = ["alexhallam <[email protected]>"] | ||
categories = ["command-line-utilities"] | ||
description = "Head, but for csvs and with color" | ||
edition = "2018" | ||
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.2" | ||
version = "1.4.3" | ||
|
||
[package.metadata.deb] | ||
assets = [ | ||
|
@@ -28,15 +28,14 @@ section = "utility" | |
[dependencies] | ||
atty = "0.2.14" | ||
calm_io = "0.1.1" | ||
console = "0.14.1" | ||
crossterm = "0.20.0" | ||
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 = "1.3.0" | ||
pad = "0.1" | ||
regex = "1.4.5" | ||
owo-colors = "3.0.1" | ||
regex = "1.5.4" | ||
serde = {version = "1.0", features = ["derive"]} | ||
structopt = "0.3.21" | ||
toml = "0.5" | ||
|
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.