Clone the Repository:
git clone [your-repository-url]
cd hash_finder
Build the Program:
cargo build --release
Run the Program:
./target/release/hash_finder -n 3 -f 6
Or for the run with release flag:
cargo run --release -- -n 3 -f 6
- The -n flag specifies how many trailing zeros the hash should have.
- The -f flag specifies how many results to find before stopping.