diff --git a/Cargo.lock b/Cargo.lock index f447928f..2bdfcf2a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -68,6 +68,12 @@ dependencies = [ "num-traits", ] +[[package]] +name = "const_fn" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f8a2ca5ac02d09563609681103aada9e1777d54fc57a5acd7a41404f9c93b6e" + [[package]] name = "dirs" version = "6.0.0" @@ -641,12 +647,13 @@ dependencies = [ [[package]] name = "x86_64" -version = "0.15.2" +version = "0.15.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f042214de98141e9c8706e8192b73f56494087cc55ebec28ce10f26c5c364ae" +checksum = "575f620d283cb63500b96c4bcaa12523c6a278d89b85ea35c97ad43ba754fd1e" dependencies = [ "bit_field", "bitflags 2.10.0", + "const_fn", "rustversion", "volatile", ] diff --git a/Cargo.toml b/Cargo.toml index 54b4fa8f..db1ddfd2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ chrono = { version = "0.4", default-features = false } [target.'cfg(target_arch = "x86_64")'.dependencies] uart_16550 = "0.4.0" -x86_64 = { version = "0.15.2", default-features = false, features = [ +x86_64 = { version = "0.15.3", default-features = false, features = [ "instructions", ] }