linuxutils-text 0.1.0

Text utilities from linuxutils (colrm, column, hexdump, line, rev)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "linuxutils-text"
version = "0.1.0"
authors = ["Patrick Elsen <pelsen@xfbs.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Text utilities from linuxutils (colrm, column, hexdump, line, rev)"
readme = "README.md"
keywords = [
    "linux",
    "cli",
    "util-linux",
    "text-processing",
]
categories = [
    "command-line-utilities",
    "os::linux-apis",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/rustutils/linuxutils"
resolver = "2"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
targets = []
all-features = true

[features]
colrm = []
column = [
    "dep:cols",
    "dep:rustix",
]
default = ["full"]
full = [
    "colrm",
    "column",
    "hexdump",
    "line",
    "rev",
]
hexdump = []
line = []
rev = []

[lib]
name = "linuxutils_text"
path = "src/lib.rs"

[[bin]]
name = "colrm"
path = "src/bin/colrm.rs"
required-features = ["colrm"]

[[bin]]
name = "column"
path = "src/bin/column.rs"
required-features = ["column"]

[[bin]]
name = "hexdump"
path = "src/bin/hexdump.rs"
required-features = ["hexdump"]

[[bin]]
name = "line"
path = "src/bin/line.rs"
required-features = ["line"]

[[bin]]
name = "rev"
path = "src/bin/rev.rs"
required-features = ["rev"]

[[test]]
name = "colrm_cli"
path = "tests/colrm_cli.rs"

[[test]]
name = "column_cli"
path = "tests/column_cli.rs"

[[test]]
name = "line_cli"
path = "tests/line_cli.rs"

[[test]]
name = "rev_cli"
path = "tests/rev_cli.rs"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.cols]
version = "0.3.2"
features = [
    "color",
    "derive",
    "regex",
]
optional = true

[dependencies.linuxutils-common]
version = "0.1.0"

[dependencies.rustix]
version = "1"
features = [
    "event",
    "fs",
    "mount",
    "process",
    "termios",
    "thread",
    "time",
]
optional = true

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.predicates]
version = "3"

[dev-dependencies.tempfile]
version = "3"