[package]
edition = "2021"
name = "cli_fmt"
version = "0.7.0"
authors = ["wTools Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI output formatting utilities for command-line applications"
documentation = "https://docs.rs/cli_fmt"
readme = false
keywords = [
"cli",
"command-line",
"output",
"formatting",
"display",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Wandalen/wTools"
[features]
ansi_unicode = ["strs_tools/ansi_unicode"]
cli_help_template = ["std"]
default = [
"enabled",
"output",
"ansi_unicode",
"cli_help_template",
]
enabled = ["dep:strs_tools"]
full = [
"enabled",
"output",
"ansi_unicode",
"cli_help_template",
]
output = [
"enabled",
"std",
"string_split",
]
std = []
string_split = []
use_alloc = []
[lib]
name = "cli_fmt"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
required-features = [
"enabled",
"output",
"cli_help_template",
]
[[test]]
name = "help"
path = "tests/help.rs"
[[test]]
name = "output"
path = "tests/output.rs"
[dependencies.strs_tools]
version = "~0.45.0"
features = [
"ansi",
"string_split",
"std",
]
optional = true
[dev-dependencies]