First of all, we create a Cargo project,
cargo new my_project
where my_project
is the name of the project.
In the project directory, we add rstar to the project.
cargo add rstar
The dependencies in Cargo.toml
file should look like this:
[dependencies]
rstar = "0.12.0"
➡️ Next: Number Of Elements
📘 Back: Table of contents