| Crates.io | int64grep |
| lib.rs | int64grep |
| version | 0.2.1 |
| created_at | 2025-10-30 05:55:34.214538+00 |
| updated_at | 2025-11-02 22:53:51.112351+00 |
| description | A tiny Rust crate that provides simple line-based search helpers and a small CLI similar to grep. |
| homepage | https://github.com/carlosr301101/int64grep |
| repository | https://github.com/carlosr301101/int64grep |
| max_upload_size | |
| id | 1907760 |
| size | 23,328 |
int64grep is a small Rust utility and library that searches for strings inside text (similar to grep). The crate exposes search helper functions used by the package binary.
Key features
Status
Repository layout
src/main.rs — CLI binary that uses the crate functionssrc/lib.rs — search logic and unit testsRequirements
How to build
In PowerShell (Windows):
cargo build --release
How to run (examples)
From the project directory you can run the binary with arguments:
# Run via cargo (pass program args after --)
cargo run -- "query" "path\to\file.txt"
# Or use the compiled release executable
.\target\release\int64grep "query" "path\\to\\file.txt"
Tests
Run the unit tests with:
cargo test
Contributing
See CONTRIBUTING.md for contribution guidelines: how to open issues, submit PRs, formatting, and running tests.
License
This project is distributed under the MIT license — see the LICENSE file.
Contact
If you'd like to help improve the project, please open an issue or a pull request with a clear description and tests when appropriate.