[package]
edition = "2024"
name = "smallgrep"
version = "0.1.1"
authors = ["Deep Thakkar <thakkard333@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Lite version of a CLI tool grep made with rust"
readme = "README.md"
license = "MIT OR Apache-2.0"
[lib]
name = "smallgrep"
path = "src/lib.rs"
[[bin]]
name = "smallgrep"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.58"
features = ["derive"]
[dependencies.colored]
version = "3.1.1"
[dependencies.regex]
version = "1.12.3"