[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