[package]
edition = "2021"
rust-version = "1.90"
name = "rs-rich-cli"
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 = "The `rich` executable: a Rust port of Python `rich-cli` 1.8.1"
homepage = "https://github.com/buchochelliq-labs/rs-rich-cli"
readme = "README.md"
keywords = [
"cli",
"terminal",
"markdown",
"syntax",
"pretty-print",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT"
repository = "https://github.com/buchochelliq-labs/rs-rich-cli"
[features]
art = ["dep:rich-art"]
default = [
"fetch",
"art",
]
fetch = ["dep:ureq"]
json-escape-safe = ["rich/json-escape-safe"]
syntax-cache = ["rich/syntax-cache"]
[[bin]]
name = "rich"
path = "src/main.rs"
[dependencies.rich]
version = "0.0.4"
package = "rs-rich"
[dependencies.rich-art]
version = "0.0.4"
features = [
"gif",
"sixel",
]
optional = true
package = "rs-rich-art"
[dependencies.rich-ext]
version = "0.0.4"
package = "rs-rich-ext"
[dependencies.serde_json]
version = "1"
features = [
"preserve_order",
"float_roundtrip",
]
[dependencies.ureq]
version = "3"
optional = true
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"