8f1549e284
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>
18 lines
332 B
TOML
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" }
|