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 PoloDB to the project.
cargo add polodb_core
The dependencies in Cargo.toml
file should look like this:
[dependencies]
polodb_core = "4.4.2"
➡️ Next: First Example
📘 Back: Table of contents