Name: rgrep Version: 0.3.0 Release: 1%{?dist} Summary: A high-performance streaming multi-threaded grep clone written in Rust License: GPL-3.0-or-later URL: https://github.com/iamadvisory/rgrep Source0: %{url}/archive/refs/tags/v%{version}.tar.gz BuildRequires: cargo BuildRequires: rust BuildRequires: gcc %description rgrep is a fast and memory-efficient alternative to standard grep-like tools. It uses a parallel streaming model to search through massive directory trees. %prep %autosetup -n rgrep-%{version} %build cargo build --release --locked %install install -Dm755 target/release/rgrep %{buildroot}%{_bindir}/rgrep %files %license LICENSE %doc README.md %{_bindir}/rgrep %changelog * Fri Mar 20 2026 iamadvisory - 0.3.0-1 - Initial release with streaming support