xer_minigrep 0.0.0

minigrep is a minimal version of grep as shown in the rust book.
Documentation
[package]
name = "xer_minigrep"
version = "0.0.0"
edition = "2021"
description = "minigrep is a minimal version of grep as shown in the rust book."
readme = "README.md"
license-file = "LICENSE"
keywords = ["text", "edit", "search", "find", "grep"]
categories = [
	"command-line-interface",
	"command-line-utilities",
	"text-processing",
	"parsing",
]

[dependencies]

[profile.dev]
strip = false
opt-level = 0

[profile.release]
strip = true
opt-level = 3