2023-08-21 17:26:44 +03:00
|
|
|
[package]
|
|
|
|
name = "kernel-util"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-10 18:52:33 +02:00
|
|
|
yggdrasil-abi = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-abi.git" }
|
2023-12-10 23:22:21 +02:00
|
|
|
device-api = { path = "../device-api", features = ["derive"] }
|
2023-12-10 23:01:39 +02:00
|
|
|
|
2023-12-10 20:54:15 +02:00
|
|
|
log = "0.4.20"
|
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"] }
|