Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion book/src/tutorial/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@ cd my-uefi-app
Add a few dependencies:

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

to your `Cargo.toml`. The resulting `Cargo.toml` should look like that:
```toml
[dependencies]
log = "0.4.21"
uefi = { version = "0.28.0", features = [ "panic_handler", "logger" ] }
```

Replace the contents of `src/main.rs` with this:
Expand Down