Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 531 Bytes

setting_up.md

File metadata and controls

25 lines (17 loc) · 531 Bytes

Setting Up

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