Skip to content

Commit

Permalink
Cross nim portability Re nimPreviewSlimSystem and have nimble install…
Browse files Browse the repository at this point in the history
… binaries.
  • Loading branch information
c-blake committed Dec 8, 2022
1 parent 6f15e19 commit 1ddd209
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion nio.nimble
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
]

0 comments on commit 1ddd209

Please sign in to comment.