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-04 21:13:40 +02:00
|
|
|
libk = { path = "../../../libk" }
|
2024-02-05 11:55:50 +02:00
|
|
|
libk-mm = { path = "../../../libk-mm" }
|
2024-02-05 12:35:09 +02:00
|
|
|
libk-util = { path = "../../../libk-util" }
|
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 }
|