Cargo.toml 436 B

12345678910111213141516171819
  1. [package]
  2. name = "acpi"
  3. version = "5.0.0"
  4. authors = ["Isaac Woods"]
  5. repository = "https://github.com/rust-osdev/acpi"
  6. description = "A pure-Rust library for parsing ACPI tables"
  7. categories = ["hardware-support", "no-std"]
  8. readme = "../README.md"
  9. license = "MIT/Apache-2.0"
  10. edition = "2021"
  11. [dependencies]
  12. bit_field = "0.10.2"
  13. log = "0.4.20"
  14. [features]
  15. default = ["allocator_api", "alloc"]
  16. allocator_api = []
  17. alloc = ["allocator_api"]