File tree Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ members = [
49
49
50
50
[patch .crates-io ]
51
51
uefi-macros = { path = " uefi-macros" }
52
+ uefi-services = { path = " uefi-services" }
52
53
uefi = { path = " ." }
53
54
54
55
[package .metadata .docs .rs ]
Original file line number Diff line number Diff line change @@ -57,6 +57,8 @@ you will also have to update the corresponding `Cargo.toml` of `uefi` to be:
57
57
uefi-macros = " 2.0.0"
58
58
```
59
59
60
+ The dependencies in ` template/Cargo.toml ` should also be updated to the new version.
61
+
60
62
[ cargo-semver ] : https://doc.rust-lang.org/cargo/reference/semver.html
61
63
[ semver ] : https://semver.org/
62
64
Original file line number Diff line number Diff line change @@ -4,7 +4,5 @@ version = "0.1.0"
4
4
edition = " 2018"
5
5
6
6
[dependencies ]
7
- # In a real application, change these to point to the latest release
8
- # on crates.io.
9
- uefi = { path = " .." , features = [" exts" ] }
10
- uefi-services = { path = " ../uefi-services" }
7
+ uefi = { version = " 0.14.0" , features = [" exts" ] }
8
+ uefi-services = " 0.11.0"
Original file line number Diff line number Diff line change @@ -10,10 +10,7 @@ how to build and run a UEFI application developed using `uefi-rs`.
10
10
11
11
- [ ` template/.cargo/config ` ] ( template/.cargo/config ) file sets some ` build-std ` options.
12
12
- [ ` template/Cargo.toml ` ] ( template/Cargo.toml ) shows the necessary
13
- dependencies. Note that when creating your project the
14
- [ ` uefi ` ] ( https://crates.io/crates/uefi ) and
15
- [ ` uefi-services ` ] ( https://crates.io/crates/uefi-services ) dependencies should
16
- be changed to the latest releases on [ crates.io] ( https://crates.io ) .
13
+ dependencies.
17
14
- [ ` template/src/main.rs ` ] ( template/src/main.rs ) has a minimal entry point that
18
15
initializes the ` uefi-services ` crate and exits successfully.
19
16
You can’t perform that action at this time.
0 commit comments