16 lines
548 B
TOML
16 lines
548 B
TOML
[package]
|
|
name = "libk-util"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
yggdrasil-abi = { path = "../../../lib/abi" }
|
|
kernel-arch = { path = "../../arch" }
|
|
|
|
log = "0.4.22"
|
|
crossbeam-queue = { version = "0.3.11", default-features = false, features = ["alloc"] }
|
|
futures-util = { version = "0.3.30", default-features = false, features = ["alloc", "async-await"] }
|
|
ahash = { version = "0.8.11", default-features = false, features = ["no-rng"] }
|