2023-08-21 17:26:44 +03:00
|
|
|
[package]
|
2024-02-04 21:13:40 +02:00
|
|
|
name = "libk"
|
2023-08-21 17:26:44 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-12-11 03:04:49 +02:00
|
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
2023-08-21 17:26:44 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-14 17:20:42 +02:00
|
|
|
libk-mm = { path = "libk-mm" }
|
|
|
|
libk-util = { path = "libk-util" }
|
|
|
|
libk-device = { path = "libk-device" }
|
2024-02-08 15:50:25 +02:00
|
|
|
kernel-arch = { path = "../arch" }
|
2024-02-05 11:55:50 +02:00
|
|
|
|
2024-03-13 19:14:54 +02:00
|
|
|
abi-lib = { path = "../../lib/abi-lib" }
|
|
|
|
yggdrasil-abi = { path = "../../lib/abi", features = ["alloc"] }
|
2024-02-04 21:13:40 +02:00
|
|
|
device-api = { path = "../lib/device-api", features = ["derive"] }
|
2023-12-10 23:01:39 +02:00
|
|
|
|
2024-03-18 19:34:03 +02:00
|
|
|
cfg-if = "1.0.0"
|
2023-12-10 20:54:15 +02:00
|
|
|
log = "0.4.20"
|
2024-03-13 19:14:54 +02:00
|
|
|
atomic_enum = "0.2.0"
|
2023-12-10 23:01:39 +02:00
|
|
|
futures-util = { version = "0.3.28", default-features = false, features = ["alloc", "async-await"] }
|
|
|
|
crossbeam-queue = { version = "0.3.8", default-features = false, features = ["alloc"] }
|
2024-03-13 19:14:54 +02:00
|
|
|
|
|
|
|
[dependencies.elf]
|
|
|
|
version = "0.7.2"
|
|
|
|
git = "https://git.alnyan.me/yggdrasil/yggdrasil-elf.git"
|
|
|
|
default-features = false
|
|
|
|
features = ["no_std_stream"]
|