git-subtree-dir: kernel git-subtree-mainline: 817f71f90f97270dd569fd44246bf74e57636552 git-subtree-split: 7f1f6b73377367db17f98a740316b904c37ce3b1
22 lines
827 B
TOML
22 lines
827 B
TOML
[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]
|
|
yggdrasil-abi = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-abi.git", features = ["serde_kernel", "bytemuck"] }
|
|
libk-mm = { path = "../../../libk/libk-mm" }
|
|
libk-util = { path = "../../../libk/libk-util" }
|
|
libk-thread = { path = "../../../libk/libk-thread" }
|
|
libk-device = { path = "../../../libk/libk-device" }
|
|
vfs = { path = "../../../lib/vfs" }
|
|
|
|
kernel-fs = { path = "../../fs/kernel-fs" }
|
|
|
|
log = "0.4.20"
|
|
bytemuck = { version = "1.14.0", features = ["derive"] }
|
|
serde_json = { version = "1.0.111", default-features = false, features = ["alloc"] }
|
|
serde = { version = "1.0.193", features = ["derive"], default-features = false }
|