-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cross nim portability Re nimPreviewSlimSystem and have nimble install…
… binaries.
- Loading branch information
Showing
1 changed file
with
14 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,9 +1,22 @@ | ||
# Package | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
author = "Charles Blake" | ||
description = "Low Overhead Numerical/Native IO library & tools" | ||
license = "MIT/ISC" | ||
|
||
# Deps | ||
requires "nim >= 1.5.1" | ||
requires "cligen >= 1.5.10" | ||
|
||
bin = @[ | ||
"nio", # A big binary file manipulating multi-command | ||
"utils/addEmpty", # Add an empty column at the end of each row. | ||
"utils/c2tsv", # escape-quoted CSV => TSV via a custom state machine | ||
"utils/c2tsvs", # escape-quoted CSV => TSV via `import parsecsv` | ||
"utils/catz", # smart, magic number based decoding dispatcher | ||
"utils/lab2sv", # labeled/folded => separated-values (hash-based) | ||
"utils/labs2sv", # labeled/folded => separated-values (sort-based) | ||
"utils/lp2term", # length-prefix => terminated | ||
"utils/nmatch", # print out lines prefixed by number of matches | ||
"utils/transpose", # transpose a text matrix | ||
] |