mirror of
https://github.com/uutils/coreutils
synced 2025-01-11 12:49:10 +00:00
59440d35c0
Bumps [clap](https://github.com/clap-rs/clap) from 3.0.10 to 3.1.6. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v3.0.10...v3.1.6) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
798 B
TOML
25 lines
798 B
TOML
[package]
|
|
name = "uu_csplit"
|
|
version = "0.0.12"
|
|
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/main/src/uu/ls"
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/csplit.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "3.1", features = ["wrap_help", "cargo"] }
|
|
thiserror = "1.0"
|
|
regex = "1.0.0"
|
|
uucore = { version=">=0.0.11", package="uucore", path="../../uucore", features=["entries", "fs"] }
|
|
|
|
[[bin]]
|
|
name = "csplit"
|
|
path = "src/main.rs"
|