2023-12-10 23:22:21 +02:00
|
|
|
[package]
|
|
|
|
name = "ygg_driver_nvme"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-12-11 03:04:49 +02:00
|
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
2023-12-10 23:22:21 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
yggdrasil-abi = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-abi.git" }
|
2024-02-04 21:13:40 +02:00
|
|
|
libk = { path = "../../../libk" }
|
2024-02-05 12:59:23 +02:00
|
|
|
libk-util = { path = "../../../libk-util" }
|
|
|
|
libk-mm = { path = "../../../libk-mm" }
|
2023-12-10 23:22:21 +02:00
|
|
|
device-api = { path = "../../../lib/device-api", features = ["derive"] }
|
|
|
|
vfs = { path = "../../../lib/vfs" }
|
|
|
|
|
|
|
|
ygg_driver_pci = { path = "../../bus/pci" }
|
2023-12-11 03:04:49 +02:00
|
|
|
ygg_driver_block = { path = "../../block/core" }
|
2023-12-10 23:22:21 +02:00
|
|
|
kernel-fs = { path = "../../fs/kernel-fs" }
|
|
|
|
|
|
|
|
log = "0.4.20"
|
|
|
|
futures-util = { version = "0.3.28", default-features = false, features = ["alloc", "async-await"] }
|
|
|
|
static_assertions = "1.1.0"
|
|
|
|
tock-registers = "0.8.1"
|
|
|
|
bytemuck = { version = "1.14.0", features = ["derive"] }
|