Browse Source

Publish `apci v5.0.0`

Isaac Woods 1 year ago
parent
commit
28275c5f6e
2 changed files with 3 additions and 3 deletions
  1. 2 2
      acpi/Cargo.toml
  2. 1 1
      acpi/src/rsdp.rs

+ 2 - 2
acpi/Cargo.toml

@@ -1,9 +1,9 @@
 [package]
 name = "acpi"
-version = "4.1.1"
+version = "5.0.0"
 authors = ["Isaac Woods"]
 repository = "https://github.com/rust-osdev/acpi"
-description = "Library for parsing ACPI tables"
+description = "A pure-Rust library for parsing ACPI tables"
 categories = ["hardware-support", "no-std"]
 readme = "../README.md"
 license = "MIT/Apache-2.0"

+ 1 - 1
acpi/src/rsdp.rs

@@ -170,7 +170,7 @@ impl Rsdp {
 }
 
 /// Find the areas we should search for the RSDP in.
-pub fn find_search_areas<H>(handler: H) -> [Range<usize>; 2]
+fn find_search_areas<H>(handler: H) -> [Range<usize>; 2]
 where
     H: AcpiHandler,
 {