git-subtree-dir: kernel git-subtree-mainline: 817f71f90f97270dd569fd44246bf74e57636552 git-subtree-split: 7f1f6b73377367db17f98a740316b904c37ce3b1
27 lines
860 B
TOML
27 lines
860 B
TOML
[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" }
|
|
libk-device = { path = "../libk-device" }
|
|
kernel-arch = { path = "../../arch" }
|
|
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"]
|