8acc73d774
Phase 1 (Runtime Substrate): 4 check binaries, --probe, POSIX tests Phase 2 (Wayland Compositor): bounded scaffold, zero warnings Phase 3 (KWin Session): preflight checker (KWin stub, gated on Qt6Quick) Phase 4 (KDE Plasma): 18 KF6 enabled, preflight checker Phase 5 (Hardware GPU): DRM/firmware/Mesa preflight checker Build: zero warnings, all scripts syntax-clean. Oracle-verified.
34 lines
652 B
TOML
34 lines
652 B
TOML
[package]
|
|
name = "pcid"
|
|
description = "PCI and PCI Express driver"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "pcid"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "pcid_interface"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
bincode = "1.2"
|
|
fdt.workspace = true
|
|
libc.workspace = true
|
|
log.workspace = true
|
|
pci_types = "0.10.1"
|
|
pico-args = { workspace = true, features = ["combined-flags"] }
|
|
plain.workspace = true
|
|
redox-scheme.workspace = true
|
|
scheme-utils = { path = "../../scheme-utils" }
|
|
redox_syscall.workspace = true
|
|
serde.workspace = true
|
|
|
|
common = { path = "../common" }
|
|
daemon = { path = "../../daemon" }
|
|
libredox.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|