17 lines
357 B
Markdown
17 lines
357 B
Markdown
---
|
|
title: Set up a Rust project
|
|
order: 300
|
|
---
|
|
|
|
You should have already [installed the Rust SDK](../install-rerun/rust.md).
|
|
|
|
If you haven't already, start a new project with `cargo new` and add the `rerun` dependency:
|
|
|
|
```bash
|
|
cargo new my_project
|
|
cd my_project
|
|
cargo add rerun
|
|
```
|
|
|
|
You're now ready to follow the [Log and Ingest](../data-in.md) tutorial.
|