Naive rust crate for implementing and testing maze solving Algorithms.
Find a file
2022-05-30 01:38:13 +03:00
src added better builder for executor 2022-05-30 01:38:13 +03:00
.gitignore initial commit 2022-05-30 00:33:36 +03:00
Cargo.lock fixed repository, incremented version for publish 2022-05-30 00:39:08 +03:00
Cargo.toml adjusted versions 2022-05-30 00:58:20 +03:00
README.md fixed typo 2022-05-30 01:03:13 +03:00

Labirust

Labyrinths, in Rust.


Description

Naive rust crate for implementing and testing maze solving Algorithms.

Context

Hi, I am a junior rust dev (yes, how original, I know) and this is one of the small projects I do to learn the language and feel its system or learn its good practices.

Usage

If you want to see what the library is capable of, you can clone this repo and run the tests to see mazes solving themselves on the terminal.

for you to see anything during the execution of tests, don't forget to add these arguments:

-- --nocapture

# example:
cargo test -- implementations::breath_first --nocapture

If you want to implement more resolution algorithm yourself and for some reason you think this is the right crate to provide frameworks, you can explore the crate documentation and add this crate to your project dependencies.