Skip to content

Commit

Permalink
Set x86_64 dep version as 0.15.2, cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
hky1999 committed Dec 17, 2024
1 parent 06ddfd4 commit 188affd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion page_table_entry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ memory_addr = "0.3"
aarch64-cpu = "9.4"

[target.'cfg(any(target_arch = "x86_64", doc))'.dependencies]
x86_64 = "0.15"
x86_64 = "0.15.2"

[package.metadata.docs.rs]
rustc-args = [ "--cfg" , "doc"]
2 changes: 1 addition & 1 deletion page_table_multiarch/src/bits64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ extern crate alloc;
use crate::{GenericPTE, PagingHandler, PagingMetaData};
use crate::{MappingFlags, PageSize, PagingError, PagingResult, TlbFlush, TlbFlushAll};
use core::marker::PhantomData;
use memory_addr::{MemoryAddr, PhysAddr, PAGE_SIZE_4K};
use memory_addr::{MemoryAddr, PAGE_SIZE_4K, PhysAddr};

const ENTRY_COUNT: usize = 512;

Expand Down

0 comments on commit 188affd

Please sign in to comment.