2
0

Cargo.toml 455 B

1234567891011121314151617181920
  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. bitflags = "2.5.0"
  14. log = "0.4.20"
  15. [features]
  16. default = ["allocator_api", "alloc"]
  17. allocator_api = []
  18. alloc = ["allocator_api"]