浏览代码

Publish `apci v5.0.0`

Isaac Woods 1 年之前
父节点
当前提交
28275c5f6e
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 2 2
      acpi/Cargo.toml
  2. 1 1
      acpi/src/rsdp.rs

+ 2 - 2
acpi/Cargo.toml

@@ -1,9 +1,9 @@
 [package]
 [package]
 name = "acpi"
 name = "acpi"
-version = "4.1.1"
+version = "5.0.0"
 authors = ["Isaac Woods"]
 authors = ["Isaac Woods"]
 repository = "https://github.com/rust-osdev/acpi"
 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"]
 categories = ["hardware-support", "no-std"]
 readme = "../README.md"
 readme = "../README.md"
 license = "MIT/Apache-2.0"
 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.
 /// 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
 where
     H: AcpiHandler,
     H: AcpiHandler,
 {
 {