22 lines
605 B
TOML
22 lines
605 B
TOML
[package]
|
|
name = "ygg_driver_usb_dwc2"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
yggdrasil-abi = { path = "../../../../lib/abi" }
|
|
device-api = { path = "../../../lib/device-api", features = ["derive"] }
|
|
ygg_driver_usb = { path = "../../bus/usb" }
|
|
device-tree = { path = "../../../lib/device-tree" }
|
|
|
|
libk-util = { path = "../../../libk/libk-util" }
|
|
libk-mm = { path = "../../../libk/libk-mm" }
|
|
libk = { path = "../../../libk" }
|
|
|
|
async-trait.workspace = true
|
|
log.workspace = true
|
|
atomic_enum.workspace = true
|
|
tock-registers.workspace = true
|
|
bytemuck.workspace = true
|
|
futures-util.workspace = true
|