os/kernel/Cargo.toml
Mathieu Strypsteen 25693bb57c
All checks were successful
Build / build (push) Successful in 2m48s
Prepare for syscalls
2024-12-22 11:56:18 +01:00

25 lines
677 B
TOML

[package]
name = "kernel"
version = "0.0.1"
edition = "2021"
license = "Unlicense"
[dependencies]
acpi = {version = "5.1.0", default-features = false}
acpica-rs = {path = "../lib/acpica-rs"}
bitfield = "0.17.0"
bitvec = {version = "1.0.1", default-features = false, features = ["alloc", "atomic"]}
buddy_system_allocator = "0.11.0"
elf = {version = "0.7.4", default-features = false}
embedded-graphics = "0.8.1"
kernel-common = {path = "../lib/kernel-common"}
lock_api = "0.4.12"
log = "0.4.22"
raw-cpuid = "11.2.0"
[lints.clippy]
missing_safety_doc = "allow"
needless_range_loop = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
upper_case_acronyms = "allow"