batless 0.4.0

A non-blocking, LLM-friendly code viewer inspired by bat
Documentation
[[bench]]
harness = false
name = "performance"
path = "benches/performance.rs"

[[bin]]
name = "batless"
path = "src/main.rs"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.clap]
features = ["derive"]
version = "4"

[dependencies.clap_complete]
version = "4.5"

[dependencies.dirs]
version = "5.0"

[dependencies.encoding_rs]
version = "0.8"

[dependencies.is-terminal]
version = "0.4"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.strip-ansi-escapes]
version = "0.2"

[dependencies.syntect]
default-features = false
features = ["parsing", "default-syntaxes", "default-themes", "html", "dump-load", "regex-onig"]
version = "5"

[dependencies.termcolor]
version = "1.4"

[dependencies.toml]
version = "0.9"

[dependencies.tree-sitter]
version = "0.26.3"

[dependencies.tree-sitter-javascript]
version = "0.25.0"

[dependencies.tree-sitter-python]
version = "0.23.6"

[dependencies.tree-sitter-rust]
version = "0.24.0"

[dependencies.tree-sitter-typescript]
version = "0.23.2"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.7"

[dev-dependencies.proptest]
default-features = false
features = ["std"]
version = "1.9"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.tempfile]
version = "3.21"

[[example]]
name = "theme-showcase"
path = "examples/theme-showcase.rs"

[lib]
name = "batless"
path = "src/lib.rs"

[package]
authors = ["Thomas <thomas@docdyhr.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["command-line-utilities", "development-tools", "text-processing"]
description = "A non-blocking, LLM-friendly code viewer inspired by bat"
documentation = "https://docs.rs/batless"
edition = "2021"
exclude = ["target/", "*.tmp", "test_file*.txt", "demo_output.txt", ".github/", "demo.sh", "fuzz/"]
homepage = "https://github.com/docdyhr/batless"
keywords = ["cli", "syntax-highlighting", "code-viewer", "ai", "automation"]
license = "MIT"
name = "batless"
readme = "README.md"
repository = "https://github.com/docdyhr/batless"
rust-version = "1.78.0"
version = "0.4.0"

[[test]]
name = "ast_summarizer_js_ts_test"
path = "tests/ast_summarizer_js_ts_test.rs"

[[test]]
name = "ast_summarizer_python_test"
path = "tests/ast_summarizer_python_test.rs"

[[test]]
name = "ast_summarizer_test"
path = "tests/ast_summarizer_test.rs"

[[test]]
name = "cli_coverage_tests"
path = "tests/cli_coverage_tests.rs"

[[test]]
name = "cli_documentation_tests"
path = "tests/cli_documentation_tests.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "property_tests"
path = "tests/property_tests.rs"

[[test]]
name = "streaming_coverage_tests"
path = "tests/streaming_coverage_tests.rs"