yggdrasil/libk/Cargo.toml

22 lines
760 B
TOML
Raw Normal View History

[package]
2024-02-04 21:13:40 +02:00
name = "libk"
version = "0.1.0"
edition = "2021"
2023-12-11 03:04:49 +02:00
authors = ["Mark Poliakov <mark@alnyan.me>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libk-mm = { path = "../libk-mm" }
2024-02-05 12:35:09 +02:00
libk-util = { path = "../libk-util" }
libk-thread = { path = "../libk-thread" }
2024-02-14 14:45:18 +02:00
libk-device = { path = "../libk-device" }
2024-02-08 15:50:25 +02:00
kernel-arch = { path = "../arch" }
yggdrasil-abi = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-abi.git" }
2024-02-04 21:13:40 +02:00
device-api = { path = "../lib/device-api", features = ["derive"] }
2023-12-10 20:54:15 +02:00
log = "0.4.20"
futures-util = { version = "0.3.28", default-features = false, features = ["alloc", "async-await"] }
crossbeam-queue = { version = "0.3.8", default-features = false, features = ["alloc"] }