Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to v0.5.0 #10

Merged
merged 3 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
]

[workspace.package]
version = "0.4.2"
version = "0.5.0"
authors = ["Yuekai Jia <[email protected]>"]
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"
homepage = "https://github.com/arceos-org/arceos"
Expand Down
4 changes: 2 additions & 2 deletions page_table_entry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "page_table_entry"
edition = "2021"
edition = "2024"
description = "Page table entry definition for various hardware architectures"
documentation = "https://docs.rs/page_table_entry"
version.workspace = true
Expand All @@ -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.1"
x86_64 = "0.15.2"

[package.metadata.docs.rs]
rustc-args = [ "--cfg" , "doc"]
4 changes: 2 additions & 2 deletions page_table_multiarch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "page_table_multiarch"
edition = "2021"
edition = "2024"
description = "Generic page table structures for various hardware architectures"
documentation = "https://docs.rs/page_table_multiarch"
version.workspace = true
Expand All @@ -14,7 +14,7 @@ categories.workspace = true
[dependencies]
log = "0.4"
memory_addr = "0.3"
page_table_entry = { path = "../page_table_entry", version = "0.4.2" }
page_table_entry = { path = "../page_table_entry", version = "0.5.0" }

[target.'cfg(any(target_arch = "x86_64", doc))'.dependencies]
x86 = "0.52"
Expand Down
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
5 changes: 0 additions & 5 deletions rust-toolchain.toml

This file was deleted.

Loading