Files
RedBear-OS/pcid/Cargo.toml
T
bjorn3 ae7e2dac9f Only parse a single MCFG ACPI table
There should only be one and Linux only parses the first one too.
2024-01-19 18:41:28 +01:00

32 lines
537 B
TOML

[package]
name = "pcid"
version = "0.1.0"
edition = "2018"
[[bin]]
name = "pcid"
path = "src/main.rs"
[lib]
name = "pcid_interface"
path = "src/lib.rs"
[dependencies]
bincode = "1.2"
bitflags = "1"
bit_field = "0.10"
byteorder = "1.2"
libc = "0.2"
log = "0.4"
paw = "1.0"
plain = "0.2"
redox-log = "0.1"
redox_syscall = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
structopt = { version = "0.3", default-features = false, features = [ "paw" ] }
thiserror = "1"
toml = "0.5"
common = { path = "../common" }