[package] name = "terminal-banner" version = "0.4.1" edition = "2021" authors = ["muji "] description = "Render a banner to the terminal" keywords = ["terminal", "banner", "wordwrap"] repository = "https://github.com/tmpfs/terminal-banner" license = "MIT OR Apache-2.0" readme = "README.md" [[example]] name = "default" path = "examples/default.rs" required-features = ["color"] [[example]] name = "strong" path = "examples/strong.rs" required-features = ["color"] [features] color = ["colored"] [dependencies] textwrap = { version = "0.16", features = ["terminal_size"] } colored = { version = "2.1.0", optional = true } [build-dependencies] rustc_version = "0.4.0"