[package]
name = "tess-cli"
version = "0.12.0"
edition = "2021"
rust-version = "1.85"
description = "Less-style terminal pager with structured-log filtering and pretty-printing."
license = "MIT"
authors = ["Thomas Björk <codedv8@gmail.com>"]
homepage = "https://github.com/codedeviate/tess"
repository = "https://github.com/codedeviate/tess"
documentation = "https://github.com/codedeviate/tess/blob/master/MANUAL.md"
readme = "README.md"
keywords = ["pager", "less", "log", "tail", "terminal"]
categories = ["command-line-utilities", "text-processing"]
exclude = [
"tess-*.tar.gz",
".claude/",
".github/",
".git/",
".idea/",
"/.gitignore",
"OUT-OF-SCOPE.md",
"CLAUDE.md",
]
[dependencies]
crossterm = { version = "0.27", features = ["use-dev-tty"] }
memmap2 = "0.9"
clap = { version = "4", features = ["derive"] }
unicode-segmentation = "1"
unicode-width = "0.1"
signal-hook = "0.3"
libc = "0.2"
regex = "1"
toml = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yml = "0.0.12"
quick-xml = { version = "0.36", features = ["serialize"] }
csv = "1"
[dev-dependencies]
tempfile = "3"
expectrl = "0.7"
criterion = { version = "0.5", features = ["html_reports"] }
proptest = "1"
[lib]
name = "tess"
path = "src/lib.rs"
[[bin]]
name = "tess"
path = "src/main.rs"
[[bench]]
name = "render_bench"
harness = false
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"