Skip to content

Commit 28275c5

Browse files
committed
Publish apci v5.0.0
1 parent fc09396 commit 28275c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

acpi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "acpi"
3-
version = "4.1.1"
3+
version = "5.0.0"
44
authors = ["Isaac Woods"]
55
repository = "https://github.com/rust-osdev/acpi"
6-
description = "Library for parsing ACPI tables"
6+
description = "A pure-Rust library for parsing ACPI tables"
77
categories = ["hardware-support", "no-std"]
88
readme = "../README.md"
99
license = "MIT/Apache-2.0"

acpi/src/rsdp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ impl Rsdp {
170170
}
171171

172172
/// Find the areas we should search for the RSDP in.
173-
pub fn find_search_areas<H>(handler: H) -> [Range<usize>; 2]
173+
fn find_search_areas<H>(handler: H) -> [Range<usize>; 2]
174174
where
175175
H: AcpiHandler,
176176
{

0 commit comments

Comments
 (0)