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