Cargo.toml 485 B

1234567891011121314151617
  1. [package]
  2. name = "aml"
  3. version = "0.16.4"
  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 = "2021"
  11. [dependencies]
  12. log = "0.4"
  13. bit_field = "0.10"
  14. byteorder = { version = "1", default-features = false }
  15. bitvec = { version = "1.0.1", default-features = false, features = ["alloc", "atomic"] }
  16. spinning_top = "0.2.4"