os/kernel/Cargo.toml
Mathieu Strypsteen 9dd71885d3
All checks were successful
Build / build (push) Successful in 2m53s
Add debug target
2024-12-13 13:00:55 +01:00

20 lines
505 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"
embedded-graphics = "0.8.1"
hashbrown = "0.15.2"
kernel-common = {path = "../lib/kernel-common"}
log = "0.4.22"
spin = "0.9.8"
[lints.clippy]
missing_safety_doc = "allow"