Skip to content

Commit 9a62d73

Browse files
Drop build-std from template
The UEFI targets are now tier 2, so we don't need to use build-std anymore.
1 parent 3c03e45 commit 9a62d73

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

template/.cargo/config.toml

Lines changed: 0 additions & 2 deletions
This file was deleted.

template/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ how to build and run a UEFI application developed using `uefi-rs`.
88

99
## File structure
1010

11-
- [`.cargo/config`](./.cargo/config) sets some `build-std` options.
1211
- [`rust-toolchain.toml`](rust-toolchain.toml) sets the nightly channel.
1312
- [`Cargo.toml`](./Cargo.toml) shows the necessary dependencies.
1413
- [`src/main.rs`](./src/main.rs) has a minimal entry point that

template/rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
22
channel = "nightly"
3-
components = ["rust-src"]
3+
targets = ["aarch64-unknown-uefi", "i686-unknown-uefi", "x86_64-unknown-uefi"]

0 commit comments

Comments
 (0)