2024-06-29 20:50:08 +02:00
|
|
|
[package]
|
|
|
|
name = "kernel"
|
|
|
|
version = "0.0.1"
|
|
|
|
edition = "2021"
|
2024-10-31 17:40:23 +01:00
|
|
|
license = "Unlicense"
|
2024-06-29 20:50:08 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2024-11-09 12:26:21 +01:00
|
|
|
acpi = {version = "5.1.0", default-features = false}
|
2024-10-31 17:40:23 +01:00
|
|
|
acpica-rs = {path = "../lib/acpica-rs"}
|
2024-10-09 18:32:08 +02:00
|
|
|
bitfield = "0.17.0"
|
2024-07-05 09:29:46 +02:00
|
|
|
bitvec = {version = "1.0.1", default-features = false, features = ["alloc", "atomic"]}
|
2024-10-11 21:56:41 +02:00
|
|
|
buddy_system_allocator = "0.11.0"
|
2024-11-13 16:15:41 +01:00
|
|
|
embedded-graphics = "0.8.1"
|
2024-12-12 16:24:49 +01:00
|
|
|
hashbrown = "0.15.2"
|
2024-07-06 21:40:05 +02:00
|
|
|
kernel-common = {path = "../lib/kernel-common"}
|
2024-06-30 11:39:31 +02:00
|
|
|
log = "0.4.22"
|
2024-07-06 20:23:38 +02:00
|
|
|
spin = "0.9.8"
|
2024-12-13 13:00:55 +01:00
|
|
|
|
|
|
|
[lints.clippy]
|
|
|
|
missing_safety_doc = "allow"
|