[package]
edition = "2021"
name = "rusty-rich"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rich text and beautiful formatting in the terminal — a Rust port of Python's Rich library"
documentation = "https://docs.rs/rusty-rich"
readme = "README.md"
keywords = [
"terminal",
"rich",
"formatting",
"tui",
"syntax-highlighting",
]
categories = [
"command-line-interface",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/sinescode/rusty-rich"
[lib]
name = "rusty_rich"
path = "src/lib.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "view_all"
path = "examples/view_all.rs"
[[test]]
name = "battle_test"
path = "tests/battle_test.rs"
[[test]]
name = "box_table_exhaustive"
path = "tests/box_table_exhaustive.rs"
[dependencies.atty]
version = "0.2"
[dependencies.chrono]
version = "0.4"
[dependencies.crossterm]
version = "0.27"
[dependencies.log]
version = "0.4"
[dependencies.once_cell]
version = "1.19"
[dependencies.palette]
version = "0.7"
[dependencies.pulldown-cmark]
version = "0.10"
[dependencies.regex]
version = "1.10"
[dependencies.serde_json]
version = "1.0"
[dependencies.syntect]
version = "5.1"
[dependencies.terminal_size]
version = "0.3"
[dependencies.unicode-width]
version = "0.1"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.tokio]
version = "1"
features = ["full"]