boxen 0.1.3

A Rust library for creating styled terminal boxes around text
Documentation
[dependencies.colored]
version = "3.0.0"

[dependencies.terminal_size]
version = "0.4.3"

[dependencies.textwrap]
version = "0.16.2"

[dependencies.thiserror]
version = "2.0.16"

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

[dev-dependencies.chrono]
version = "0.4.41"

[dev-dependencies.ctrlc]
version = "3.5.0"

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

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

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

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

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

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

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

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

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

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

[package]
authors = ["Boxen Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "text-processing"]
description = "A Rust library for creating styled terminal boxes around text"
documentation = "https://docs.rs/boxen"
edition = "2024"
keywords = ["terminal", "cli", "box", "text", "formatting"]
license = "MIT OR Apache-2.0"
name = "boxen"
readme = "README.md"
repository = "https://github.com/sabry-awad97/boxen"
rust-version = "1.85.0"
version = "0.1.3"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[profile.dev]
opt-level = 1

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"

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

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

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