Skip to content

Commit 6608c0f

Browse files
committed
Update dependencies
1 parent 49d8fe5 commit 6608c0f

File tree

5 files changed

+24
-41
lines changed

5 files changed

+24
-41
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- name: Install Rust
88
uses: actions-rs/toolchain@v1
99
with:
10-
toolchain: nightly-2021-03-24
10+
toolchain: nightly
1111
override: true
1212
components: rust-src
1313
- name: Build for i686

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Install Rust
1111
uses: actions-rs/toolchain@v1
1212
with:
13-
toolchain: nightly-2021-03-24
13+
toolchain: nightly
1414
override: true
1515
components: rust-src
1616
- name: Build for i686

Cargo.lock

+18-35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ resolver = "2"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
uefi = { version = "0.8", features = ["alloc", "logger", "exts"] }
13-
uefi-services = "0.5"
12+
uefi = { version = "0.11", features = ["alloc", "logger", "exts"] }
13+
uefi-services = "0.8"
1414

1515
log = { version = "0.4", default-features = false }
1616

@@ -32,4 +32,4 @@ scroll = { version = "0.10", default-features = false }
3232
miniarg = { version = "0.3", default-features = false, features = ["alloc", "derive"] }
3333

3434
[build-dependencies]
35-
built = { version = "0.4", features = ["git2"] }
35+
built = { version = "0.5", features = ["git2"] }

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ If you want to compile towboot yourself, here are the instructions:
4242

4343
You'll need a nightly Rust compiler.
4444
The version doesn't really matter,
45-
though rustc 1.53.0-nightly (07e0e2ec2 2021-03-24) definitely works.
45+
though `rustc 1.55.0-nightly (955b9c0d4 2021-07-12)` definitely works.
4646
If you don't know how to install one,
4747
please take a look at [rustup.rs](https://rustup.rs/).
4848
(You can configure rustup to use a nightly toolchain just for the current folder

0 commit comments

Comments
 (0)