27 lines
860 B
TOML
Raw Normal View History

[package]
name = "libk-thread"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libk-util = { path = "../libk-util" }
libk-mm = { path = "../libk-mm" }
2024-02-14 14:45:18 +02:00
libk-device = { path = "../libk-device" }
kernel-arch = { path = "../../arch" }
2024-03-12 13:46:24 +02:00
abi-lib = { git = "https://git.alnyan.me/yggdrasil/abi-generator.git" }
yggdrasil-abi = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-abi.git" }
log = "0.4.20"
atomic_enum = "0.2.0"
crossbeam-queue = { version = "0.3.8", default-features = false, features = ["alloc"] }
futures-util = { version = "0.3.28", default-features = false, features = ["alloc", "async-await"] }
[dependencies.elf]
version = "0.7.2"
git = "https://git.alnyan.me/yggdrasil/yggdrasil-elf.git"
default-features = false
features = ["no_std_stream"]