Files
RedBear-OS/pcid/Cargo.toml
T
bjorn3 7935ed0248 Deduplicate setup_logging between all drivers
This will make it easier to change the way logging is done for all
drivers. This also fixes the log category for a couple of drivers as
well as makes failing to set the logger a fatal error. Only when a
logger is already set is it impossible to set another logger.
2024-07-24 22:00:40 +02:00

34 lines
623 B
TOML

[package]
name = "pcid"
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"
bitflags = "1"
bit_field = "0.10"
fdt = { git = "https://gitlab.redox-os.org/rosehuds/fdt.git" }
libc = "0.2"
log = "0.4"
paw = "1.0"
pci_types = "0.10"
plain = "0.2"
redox-daemon = "0.1"
redox_syscall = "0.5"
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" }
libredox = "0.1.3"