37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
cargo-features = ["profile-rustflags"]
|
|
|
|
[package]
|
|
name = "libk"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
|
|
|
[lib]
|
|
crate_type = ["rlib", "dylib"]
|
|
|
|
[dependencies]
|
|
libk-mm = { path = "libk-mm" }
|
|
libk-util = { path = "libk-util" }
|
|
libk-device = { path = "libk-device" }
|
|
kernel-arch = { path = "../arch" }
|
|
|
|
abi-lib = { path = "../../lib/abi-lib" }
|
|
yggdrasil-abi = { path = "../../lib/abi", features = ["alloc", "serde"] }
|
|
device-api = { path = "../lib/device-api", features = ["derive"] }
|
|
|
|
cfg-if = "1.0.0"
|
|
log = "0.4.20"
|
|
atomic_enum = "0.2.0"
|
|
futures-util = { version = "0.3.28", default-features = false, features = ["alloc", "async-await"] }
|
|
crossbeam-queue = { version = "0.3.8", default-features = false, features = ["alloc"] }
|
|
|
|
serde_json = { version = "1.0.111", default-features = false, features = ["alloc"] }
|
|
serde = { version = "1.0.193", features = ["derive"], default-features = false }
|
|
bytemuck = { version = "1.14.0", features = ["derive"] }
|
|
|
|
[dependencies.elf]
|
|
version = "0.7.2"
|
|
git = "https://git.alnyan.me/yggdrasil/yggdrasil-elf.git"
|
|
default-features = false
|
|
features = ["no_std_stream"]
|