runemark 0.9.0

Opinionated terminal presentation for Rust command-line tools
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 = "runemark"
version = "0.9.0"
build = false
exclude = [
    "todo.md",
    "bindings/**",
    "packages/**",
    "plan/**",
    "scripts/**",
    "site/**",
    "docs/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Opinionated terminal presentation for Rust command-line tools"
documentation = "https://docs.rs/runemark"
readme = "README.md"
keywords = [
    "cli",
    "terminal",
    "reporting",
    "progress",
    "output",
]
categories = [
    "command-line-interface",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/casoon/runemark"

[package.metadata.docs.rs]
all-features = true

[features]
progress = ["dep:indicatif"]
select = ["dep:libc"]

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

[[example]]
name = "progress_demo"
path = "examples/progress_demo.rs"

[[example]]
name = "report_demo"
path = "examples/report_demo.rs"

[[example]]
name = "select_demo"
path = "examples/select_demo.rs"
required-features = ["select"]

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

[dependencies.indicatif]
version = "0.18"
optional = true

[dependencies.unicode-width]
version = "0.2"

[target."cfg(unix)".dependencies.libc]
version = "0.2"
optional = true