[package]
edition = "2021"
rust-version = "1.85"
name = "tess-cli"
version = "0.12.0"
authors = ["Thomas Björk <codedv8@gmail.com>"]
build = false
exclude = [
"tess-*.tar.gz",
".claude/",
".github/",
".git/",
".idea/",
"/.gitignore",
"OUT-OF-SCOPE.md",
"CLAUDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Less-style terminal pager with structured-log filtering and pretty-printing."
homepage = "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",
]
license = "MIT"
repository = "https://github.com/codedeviate/tess"
[lib]
name = "tess"
path = "src/lib.rs"
[[bin]]
name = "tess"
path = "src/main.rs"
[[test]]
name = "golden_frame"
path = "tests/golden_frame.rs"
[[test]]
name = "log_format"
path = "tests/log_format.rs"
[[test]]
name = "pty_smoke"
path = "tests/pty_smoke.rs"
[[test]]
name = "records_indexing"
path = "tests/records_indexing.rs"
[[test]]
name = "records_search_filter"
path = "tests/records_search_filter.rs"
[[test]]
name = "render_proptest"
path = "tests/render_proptest.rs"
[[test]]
name = "scroll_long_lines"
path = "tests/scroll_long_lines.rs"
[[bench]]
name = "render_bench"
path = "benches/render_bench.rs"
harness = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.27"
features = ["use-dev-tty"]
[dependencies.csv]
version = "1"
[dependencies.libc]
version = "0.2"
[dependencies.memmap2]
version = "0.9"
[dependencies.quick-xml]
version = "0.36"
features = ["serialize"]
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yml]
version = "0.0.12"
[dependencies.signal-hook]
version = "0.3"
[dependencies.toml]
version = "0.8"
[dependencies.unicode-segmentation]
version = "1"
[dependencies.unicode-width]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.expectrl]
version = "0.7"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"