7935ed0248
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.
27 lines
609 B
TOML
27 lines
609 B
TOML
[package]
|
|
name = "nvmed"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
arrayvec = "0.5"
|
|
bitflags = "1"
|
|
crossbeam-channel = "0.4"
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
redox-daemon = "0.1"
|
|
redox_syscall = { version = "0.5", features = ["std"] }
|
|
redox-scheme = { git = "https://gitlab.redox-os.org/redox-os/redox-scheme.git" }
|
|
redox_event = "0.4"
|
|
partitionlib = { git = "https://gitlab.redox-os.org/redox-os/partitionlib.git" }
|
|
smallvec = "1"
|
|
|
|
common = { path = "../../common" }
|
|
driver-block = { path = "../driver-block" }
|
|
pcid = { path = "../../pcid" }
|
|
libredox = "0.1.3"
|
|
|
|
[features]
|
|
default = ["async"]
|
|
async = []
|