cli_fmt 0.9.2

CLI output formatting utilities for command-line applications
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 = "2021"
name = "cli_fmt"
version = "0.9.2"
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.47.1"
features = [
    "ansi",
    "string_split",
    "std",
]
optional = true

[dev-dependencies]