| Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago | 1 | ## How to install |
| 2 | |
| 3 | [trunk](https://trunkrs.dev/) is used to build and serve the example. |
| 4 | ```sh |
| 5 | cargo install --locked trunk |
| 6 | # -- or -- |
| 7 | cargo binstall trunk |
| 8 | ``` |
| 9 | |
| 10 | ## How to run in debug mode |
| 11 | |
| 12 | ```sh |
| 13 | # Builds the project and opens it in a new browser tab. Auto-reloads when the project changes. |
| 14 | trunk serve --open |
| 15 | ``` |
| 16 | |
| 17 | ## How to build in release mode |
| 18 | |
| 19 | ```sh |
| 20 | # Builds the project in release mode and places it into the `dist` folder. |
| 21 | trunk build --release |
| 22 | ``` |
| 23 | |
| 24 | ## What does each file do? |
| 25 | |
| 26 | * `Cargo.toml` contains the standard Rust metadata. You put your Rust dependencies in here. You must change this file with your details (name, description, version, authors, categories) |
| 27 | |
| 28 | * The `src` folder contains your Rust code. |