Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Philipp Schuster <[email protected]>
  • Loading branch information
stillinbeta and phip1611 authored May 16, 2024
1 parent 60fbc6b commit c828e81
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions book/src/tutorial/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@ cd my-uefi-app
Add a few dependencies:

```sh
cargo add log uefi
cargo add log
cargo add uefi --features logger panic_handler
```

You'll need to add some feature flags and configuration to Cargo.toml as well:
Also you have to add
```toml
[profile.dev]
panic="abort"
```
to your `Cargo.toml`. The resulting `Cargo.toml` should look like that:
```toml
[dependencies]
log = "0.4.21"
Expand Down

0 comments on commit c828e81

Please sign in to comment.