We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af7ae1d commit 37eb5f5Copy full SHA for 37eb5f5
book/src/tutorial/app.md
@@ -16,7 +16,15 @@ cd my-uefi-app
16
Add a few dependencies:
17
18
```sh
19
-cargo add log uefi
+cargo add log
20
+cargo add uefi --features logger,panic_handler
21
+```
22
+
23
+to your `Cargo.toml`. The resulting `Cargo.toml` should look like that:
24
+```toml
25
+[dependencies]
26
+log = "0.4.21"
27
+uefi = { version = "0.28.0", features = [ "panic_handler", "logger" ] }
28
```
29
30
Replace the contents of `src/main.rs` with this:
0 commit comments