You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description = "rbgrep is a AST-based line-oriented search cli tool that recursively searches ruby files in the current directory for a regex patterns."
edition = "2021"
license = "MIT"
name = "rbgrep"
version = "0.1.6"
[[bin]]
name = "rbgrep"
path = "./src/main.rs"
[dependencies]
anyhow = "1.0.70"
clap = {version = "4.3.12", features = ["derive"]}
clap-stdin = "0.1.1"
colored = "2.0.4"
encoding_rs = "0.8.32"
ignore = "0.4"
itertools = "0.10.5"
lib-ruby-parser = "4.0.5"
rayon = "1.7.0"
regex = "1.9.1"
serde = {version = "1.0.163", features = ["derive"]}