code-preview 0.1.0

A powerful CLI tool to preview code files with syntax highlighting, line numbers, and built-in search.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "code-preview"
version = "0.1.0"
edition = "2021"
description = "A powerful CLI tool to preview code files with syntax highlighting, line numbers, and built-in search."
license = "MIT"
repository = "https://github.com/user/code-preview"
homepage = "https://github.com/user/code-preview"
documentation = "https://docs.rs/code-preview"
readme = "README.md"
keywords = ["cli", "preview", "syntax-highlighting", "search", "terminal"]
categories = ["command-line-utilities", "development-tools"]

[dependencies]
clap = { version = "4.4", features = ["derive"] }
syntect = "5.1"
console = "0.15"
regex = "1.10"