2024-04-01 17:23:12 +03:00
|
|
|
cargo-features = ["profile-rustflags"]
|
|
|
|
|
2023-08-21 17:26:44 +03:00
|
|
|
[package]
|
2024-02-04 21:13:40 +02:00
|
|
|
name = "libk"
|
2023-08-21 17:26:44 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-12-11 03:04:49 +02:00
|
|
|
authors = ["Mark Poliakov <mark@alnyan.me>"]
|
2023-08-21 17:26:44 +03:00
|
|
|
|
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
|
|
|
|
2023-08-21 17:26:44 +03:00
|
|
|
[dependencies]
|
2024-11-01 20:37:30 +02:00
|
|
|
libk-mm.workspace = true
|
|
|
|
libk-util.workspace = true
|
|
|
|
libk-device.workspace = true
|
|
|
|
kernel-arch.workspace = true
|
|
|
|
abi-lib.workspace = true
|
|
|
|
yggdrasil-abi = { workspace = true, features = ["alloc", "serde"] }
|
|
|
|
device-api = { workspace = true, features = ["derive"] }
|
|
|
|
|
|
|
|
cfg-if.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
atomic_enum.workspace = true
|
|
|
|
futures-util.workspace = true
|
|
|
|
crossbeam-queue.workspace = true
|
|
|
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
bytemuck.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
|
|
static_assertions.workspace = true
|
|
|
|
elf.workspace = true
|
2024-02-05 11:55:50 +02:00
|
|
|
|
2024-07-30 17:46:50 +03:00
|
|
|
uuid = { version = "1.10.0", features = ["bytemuck"], default-features = false }
|
|
|
|
lru = "0.12.3"
|
2024-03-19 23:11:03 +02:00
|
|
|
|
2024-12-04 18:28:27 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { workspace = true, features = ["rt", "macros"] }
|
|
|
|
libc.workspace = true
|
|
|
|
|
2024-11-19 19:33:08 +02:00
|
|
|
[lints]
|
|
|
|
workspace = true
|