浏览代码

Improve README slightly, update dependencies

Isaac Woods 5 年之前
父节点
当前提交
4e8e9d173d
共有 3 个文件被更改,包括 8 次插入4 次删除
  1. 6 2
      README.md
  2. 1 1
      acpi/Cargo.toml
  3. 1 1
      aml/Cargo.toml

+ 6 - 2
README.md

@@ -9,11 +9,15 @@ A library to parse ACPI tables and AML, written in pure Rust. Designed to be eas
 - `acpi` parses the static tables (useful but not feature-complete)
 - `aml` parses the AML tables (can be useful, far from feature-complete)
 
+There is also the `acpi-dumper` utility to easily dump a platform's ACPI tables (this currently only works on
+Linux).
+
 ## Contributing
 Contributions are more than welcome! You can:
 - Write code - the ACPI spec is huge and there are bound to be things we don't support yet!
-- Documentation
-- Using the crates within your kernel and file bug reports and feature requests!
+- Improve our documentation!
+- Use the crates within your kernel and file bug reports and feature requests!
+- Dump the ACPI tables of hardware you have access to and add them to our test suite!
 
 Useful resources for contributing are:
 - [The ACPI specification](https://uefi.org/specifications)

+ 1 - 1
acpi/Cargo.toml

@@ -11,5 +11,5 @@ edition = "2018"
 
 [dependencies]
 log = "0.4"
-bit_field = "0.9"
+bit_field = "0.10"
 typenum = "1"

+ 1 - 1
aml/Cargo.toml

@@ -11,7 +11,7 @@ edition = "2018"
 
 [dependencies]
 log = "0.4"
-bit_field = "0.9"
+bit_field = "0.10"
 
 [features]
 debug_parser = []