tiny-grep 0.1.0

A simple grep-like text search utility written in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "tiny-grep"
version = "0.1.0"
edition = "2021"
description = "A simple grep-like text search utility written in Rust"
license = "MIT"
authors = ["Ogunmola Samuel Opeyemi <olumidesamuel588@gmail.com>"]
readme = "README.md"
repository = "https://github.com/developer-mide/tiny-grep"
homepage = "https://github.com/developer-mide/tiny-grep"
documentation = "https://docs.rs/tiny-grep"
keywords = ["grep", "search", "text", "cli", "utility"]
categories = ["command-line-utilities", "text-processing"]

[dependencies]
clap = { version = "4.5.46", features = ["derive"] }