2020-12-27 14:24:02 +00:00
[ package ]
name = "uu_csplit"
2021-01-21 20:09:19 +00:00
version = "0.0.3"
2020-12-27 14:24:02 +00:00
authors = [ "uutils developers" ]
license = "MIT"
description = "csplit ~ (uutils) Output pieces of FILE separated by PATTERN(s) to files 'xx00', 'xx01', ..., and output byte counts of each piece to standard output"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/ls"
keywords = [ "coreutils" , "uutils" , "cross-platform" , "cli" , "utility" ]
categories = [ "command-line-utilities" ]
edition = "2018"
[ lib ]
path = "src/csplit.rs"
[ dependencies ]
getopts = "0.2.17"
2021-01-11 21:01:14 +00:00
thiserror = "1.0"
2020-12-27 14:24:02 +00:00
regex = "1.0.0"
glob = "0.2.11"
2021-02-01 22:55:33 +00:00
uucore = { version = ">=0.0.6" , package = "uucore" , path = "../../uucore" , features = [ "entries" , "fs" ] }
2021-01-10 17:27:20 +00:00
uucore_procs = { version = ">=0.0.5" , package = "uucore_procs" , path = "../../uucore_procs" }
2020-12-27 14:24:02 +00:00
[ [ bin ] ]
name = "csplit"
path = "src/main.rs"