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-12-27 08:27:09 +01:00
|
|
|
acpi = { version = "5.1.0", default-features = false }
|
|
|
|
acpica-rs = { path = "../lib/acpica-rs" }
|
2024-10-09 18:32:08 +02:00
|
|
|
bitfield = "0.17.0"
|
2024-12-27 08:27:09 +01:00
|
|
|
bitvec = { version = "1.0.1", default-features = false, features = ["alloc", "atomic"] }
|
|
|
|
buddy_system_allocator = { version = "0.11.0", default-features = false }
|
|
|
|
elf = { version = "0.7.4", default-features = false }
|
2024-11-13 16:15:41 +01:00
|
|
|
embedded-graphics = "0.8.1"
|
2024-12-28 20:11:08 +01:00
|
|
|
hashbrown = "0.15.2"
|
2024-12-27 08:27:09 +01:00
|
|
|
kernel-common = { path = "../lib/kernel-common" }
|
2024-12-13 17:50:35 +01:00
|
|
|
lock_api = "0.4.12"
|
2024-06-30 11:39:31 +02:00
|
|
|
log = "0.4.22"
|
2024-12-22 11:56:18 +01:00
|
|
|
raw-cpuid = "11.2.0"
|
2024-12-13 13:00:55 +01:00
|
|
|
|
|
|
|
[lints.clippy]
|
|
|
|
missing_safety_doc = "allow"
|
2024-12-13 13:35:40 +01:00
|
|
|
needless_range_loop = "allow"
|
2024-12-18 12:32:19 +01:00
|
|
|
too_many_arguments = "allow"
|
2024-12-13 13:35:40 +01:00
|
|
|
type_complexity = "allow"
|
|
|
|
upper_case_acronyms = "allow"
|