yggdrasil/kernel/libk/Cargo.toml

44 lines
1.3 KiB
TOML
Raw Normal View History

2024-04-01 17:23:12 +03:00
cargo-features = ["profile-rustflags"]
[package]
2024-02-04 21:13:40 +02:00
name = "libk"
version = "0.1.0"
edition = "2021"
2023-12-11 03:04:49 +02:00
authors = ["Mark Poliakov <mark@alnyan.me>"]
2024-04-01 17:23:12 +03:00
[lib]
2024-07-25 11:58:47 +03:00
crate-type = ["rlib", "dylib"]
2024-04-01 17:23:12 +03:00
[dependencies]
libk-mm = { path = "libk-mm" }
libk-util = { path = "libk-util" }
libk-device = { path = "libk-device" }
2024-02-08 15:50:25 +02:00
kernel-arch = { path = "../arch" }
abi-lib = { path = "../../lib/abi-lib" }
yggdrasil-abi = { path = "../../lib/abi", features = ["alloc", "serde"] }
2024-02-04 21:13:40 +02:00
device-api = { path = "../lib/device-api", features = ["derive"] }
cfg-if = "1.0.0"
2024-07-28 12:53:30 +03:00
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 }
2024-07-28 12:53:30 +03:00
bytemuck = { version = "1.16.1", features = ["derive"] }
2024-07-29 14:43:37 +03:00
async-trait = "0.1.81"
2024-07-30 17:46:50 +03:00
static_assertions = "1.1.0"
uuid = { version = "1.10.0", features = ["bytemuck"], default-features = false }
lru = "0.12.3"
[dependencies.elf]
version = "0.7.2"
git = "https://git.alnyan.me/yggdrasil/yggdrasil-elf.git"
default-features = false
features = ["no_std_stream"]
2024-07-25 11:58:47 +03:00
[lints.rust]
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(rust_analyzer)'] }