Files
RedBear-OS/pcid-spawner/Cargo.toml
T
bjorn3 8f1549e284 Introduce a pci scheme and move driver spawning to pcid-spawner
This allows a single PCI daemon to run on the whole system, prevents
multiple drivers from claiming the same PCI device and makes it possible
for userspace to enumerate all available PCI devices. In the future this
will enable an lspci tool, possibly PCIe hot plugging and more.

Co-Authored-By: 4lDO2 <4lDO2@protonmail.com>
2025-03-01 17:18:15 +01:00

18 lines
332 B
TOML

[package]
name = "pcid-spawner"
version = "0.1.0"
authors = ["4lDO2 <4lDO2@protonmail.com>"]
edition = "2021"
license = "MIT"
[dependencies]
anyhow = "1"
log = "0.4"
pico-args = "0.5"
redox_syscall = "0.5.9"
serde = { version = "1", features = ["derive"] }
toml = "0.5"
common = { path = "../common" }
pcid = { path = "../pcid" }