23 lines
720 B
TOML
23 lines
720 B
TOML
[package]
|
|
name = "ygg_driver_nvme"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
|
|
|
[dependencies]
|
|
yggdrasil-abi = { path = "../../../../lib/abi" }
|
|
libk-util = { path = "../../../libk/libk-util" }
|
|
libk-mm = { path = "../../../libk/libk-mm" }
|
|
libk = { path = "../../../libk" }
|
|
device-api = { path = "../../../lib/device-api", features = ["derive"] }
|
|
|
|
ygg_driver_pci = { path = "../../bus/pci" }
|
|
kernel-fs = { path = "../../fs/kernel-fs" }
|
|
|
|
log = "0.4.22"
|
|
futures-util = { version = "0.3.30", default-features = false, features = ["alloc", "async-await"] }
|
|
static_assertions = "1.1.0"
|
|
tock-registers = "0.8.1"
|
|
bytemuck = { version = "1.16.1", features = ["derive"] }
|
|
async-trait = "0.1.81"
|