Skip to content

Commit f8f1c23

Browse files
retragejosephlr
authored andcommitted
Cargo: Update x86_64 from 0.11 to 0.12
The recent version of Rust cannot build x86_64 crate v0.11 because it does not allow function pointers in constant functions[1]. This commit updates the version to fix the build error. [1] rust-lang/rust#57563 Signed-off-by: Akira Moroo <[email protected]> Signed-off-by: Joe Richey <[email protected]>
1 parent c0c73f7 commit f8f1c23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ integration_tests = []
2626

2727
[dependencies]
2828
bitflags = "1.2"
29-
x86_64 = "0.11"
29+
x86_64 = "0.12.2"
3030
atomic_refcell = "0.1"
3131
r-efi = "2.1.0"
32-
uart_16550 = "0.2.7"
32+
uart_16550 = "0.2.10"
3333

3434
[dev-dependencies]
3535
rand = "0.7.3"

0 commit comments

Comments
 (0)