Skip to content

Commit 13ebba2

Browse files
committed
MSRV is 1.61 for OS and 1.68 for UEFI
Signed-off-by: Daniel Schaefer <[email protected]>
1 parent 94ae18a commit 13ebba2

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ will install the right toolchain and version for this project.
8686

8787
## Building
8888

89+
MSRV (Minimum Supported Rust Version):
90+
91+
- 1.61 for Linux/Windows
92+
- 1.68 for UEFI
93+
8994
```sh
9095
# Running linter
9196
cargo clippy

framework_lib/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "framework_lib"
33
version = "0.1.0"
44
edition = "2021"
5+
-rust-version = "1.61"
56

67
[features]
78
default = ["linux"]

framework_uefi/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "framework_uefi"
33
version = "0.1.0"
44
edition = "2021"
5+
rust-version = "1.68"
56

67
[[bin]]
78
name = "uefitool"

guid_macros/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ repository = "https://github.com/rust-osdev/uefi-rs"
99
keywords = ["uefi", "efi"]
1010
categories = ["embedded", "no-std", "api-bindings"]
1111
license = "MPL-2.0"
12-
rust-version = "1.68"
1312

1413
[lib]
1514
proc-macro = true

0 commit comments

Comments
 (0)