git-subtree-dir: kernel git-subtree-mainline: 817f71f90f97270dd569fd44246bf74e57636552 git-subtree-split: 7f1f6b73377367db17f98a740316b904c37ce3b1
27 lines
948 B
TOML
27 lines
948 B
TOML
[package]
|
|
name = "ygg_driver_ahci"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
|
|
|
# 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" }
|
|
libk-mm = { path = "../../../libk/libk-mm" }
|
|
libk-thread = { path = "../../../libk/libk-thread" }
|
|
libk-util = { path = "../../../libk/libk-util" }
|
|
device-api = { path = "../../../lib/device-api", features = ["derive"] }
|
|
vfs = { path = "../../../lib/vfs" }
|
|
|
|
ygg_driver_pci = { path = "../../bus/pci" }
|
|
ygg_driver_block = { path = "../../block/core" }
|
|
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"] }
|
|
memoffset = "0.9.0"
|