-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 769 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[workspace]
members = ["tools/aml_tester", "tools/acpi_dumper", "tools/aml_test_tools", "tools/uacpi_test_adapter"]
resolver = "2"
[package]
name = "acpi"
version = "6.1.1"
authors = ["Isaac Woods"]
repository = "https://github.com/rust-osdev/acpi"
description = "A pure-Rust library for interacting with ACPI"
categories = ["hardware-support", "no-std"]
license = "MIT/Apache-2.0"
edition = "2024"
[dependencies]
bit_field = "0.10.2"
bitflags = "2.5.0"
log = "0.4.20"
spinning_top = "0.3.0"
pci_types = { version = "0.10.0", public = true }
byteorder = { version = "1.5.0", default-features = false }
[dev-dependencies]
aml_test_tools = { path = "tools/aml_test_tools" }
pretty_env_logger = "0.5.0"
[features]
default = ["alloc", "aml"]
alloc = []
aml = ["alloc"]