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-02-14 17:20:42 +02:00
|
|
|
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" }
|
2024-02-05 11:55:50 +02:00
|
|
|
|
2024-03-13 19:14:54 +02:00
|
|
|
abi-lib = { path = "../../lib/abi-lib" }
|
2024-03-19 23:11:03 +02:00
|
|
|
yggdrasil-abi = { path = "../../lib/abi", features = ["alloc", "serde"] }
|
2024-02-04 21:13:40 +02:00
|
|
|
device-api = { path = "../lib/device-api", features = ["derive"] }
|
2023-12-10 23:01:39 +02:00
|
|
|
|
2024-03-18 19:34:03 +02:00
|
|
|
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"] }
|
2024-03-13 19:14:54 +02:00
|
|
|
|
2024-03-19 23:11:03 +02:00
|
|
|
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"
|
2024-03-19 23:11:03 +02:00
|
|
|
|
2024-03-13 19:14:54 +02:00
|
|
|
[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)'] }
|