Cargo.toml 368 B

123456789101112131415
  1. [package]
  2. name = "acpi"
  3. version = "4.1.1"
  4. authors = ["Isaac Woods"]
  5. repository = "https://github.com/rust-osdev/acpi"
  6. description = "Library for parsing ACPI tables"
  7. categories = ["hardware-support", "no-std"]
  8. readme = "../README.md"
  9. license = "MIT/Apache-2.0"
  10. edition = "2018"
  11. [dependencies]
  12. log = "0.4"
  13. bit_field = "0.10"
  14. rsdp = { version = "2", path = "../rsdp" }