21 lines
718 B
TOML
21 lines
718 B
TOML
[package]
|
|
name = "libk"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
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" }
|
|
libk-util = { path = "../libk-util" }
|
|
libk-thread = { path = "../libk-thread" }
|
|
kernel-arch = { path = "../arch" }
|
|
|
|
yggdrasil-abi = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-abi.git" }
|
|
device-api = { path = "../lib/device-api", features = ["derive"] }
|
|
|
|
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"] }
|