Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 532 Bytes

setting_up.md

File metadata and controls

26 lines (17 loc) · 532 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 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