Cargo.toml 371 B

123456789101112131415161718
  1. [package]
  2. name = "aml"
  3. version = "0.3.0"
  4. authors = ["Isaac Woods"]
  5. repository = "https://github.com/rust-osdev/acpi"
  6. description = "Library for parsing AML"
  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.9"
  14. [features]
  15. debug_parser = []
  16. debug_parser_verbose = []