[package]
edition = "2021"
rust-version = "1.90"
name = "rs-rich"
version = "0.0.4"
authors = ["rs-rich-cli contributors"]
build = false
include = [
"src/**/*",
"README.md",
"LICENSE",
"Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A faithful Rust port of the Python `rich` terminal-rendering library"
homepage = "https://github.com/buchochelliq-labs/rs-rich-cli"
documentation = "https://docs.rs/rs-rich"
readme = "README.md"
keywords = [
"terminal",
"console",
"ansi",
"formatting",
"tui",
]
categories = [
"command-line-interface",
"text-processing",
]
license = "MIT"
repository = "https://github.com/buchochelliq-labs/rs-rich-cli"
[features]
default = []
json-escape-safe = []
syntax-cache = []
[lib]
name = "rich"
path = "src/lib.rs"
[dependencies.anstyle-query]
version = "1.1.5"
[dependencies.fancy-regex]
version = "0.19"
[dependencies.pulldown-cmark]
version = "0.13"
default-features = false
[dependencies.serde_json]
version = "1"
features = [
"preserve_order",
"float_roundtrip",
]
[dependencies.syntect]
version = "5"
features = ["default-fancy"]
default-features = false
[dependencies.terminal_size]
version = "0.4"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"