2024-01-20 19:40:27 +02:00
|
|
|
[package]
|
|
|
|
name = "ygg_driver_net_core"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-22 14:39:06 +02:00
|
|
|
yggdrasil-abi = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-abi.git", features = ["serde_kernel", "bytemuck"] }
|
2024-02-14 17:20:42 +02:00
|
|
|
libk-mm = { path = "../../../libk/libk-mm" }
|
|
|
|
libk-util = { path = "../../../libk/libk-util" }
|
|
|
|
libk-thread = { path = "../../../libk/libk-thread" }
|
|
|
|
libk-device = { path = "../../../libk/libk-device" }
|
2024-01-20 19:40:27 +02:00
|
|
|
vfs = { path = "../../../lib/vfs" }
|
|
|
|
|
|
|
|
kernel-fs = { path = "../../fs/kernel-fs" }
|
|
|
|
|
|
|
|
log = "0.4.20"
|
|
|
|
bytemuck = { version = "1.14.0", features = ["derive"] }
|
2024-01-22 14:39:06 +02:00
|
|
|
serde_json = { version = "1.0.111", default-features = false, features = ["alloc"] }
|
|
|
|
serde = { version = "1.0.193", features = ["derive"], default-features = false }
|