41 lines
1.2 KiB
TOML
41 lines
1.2 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.22"
|
|
atomic_enum = "0.3.0"
|
|
futures-util = { version = "0.3.30", default-features = false, features = ["alloc", "async-await"] }
|
|
crossbeam-queue = { version = "0.3.11", 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.16.1", features = ["derive"] }
|
|
async-trait = "0.1.81"
|
|
|
|
[dependencies.elf]
|
|
version = "0.7.2"
|
|
git = "https://git.alnyan.me/yggdrasil/yggdrasil-elf.git"
|
|
default-features = false
|
|
features = ["no_std_stream"]
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(rust_analyzer)'] }
|