os/kernel/Cargo.toml
Mathieu Strypsteen 503f554495
Some checks failed
Build / build (push) Failing after 2m4s
Use buddy allocator
2024-10-11 21:56:41 +02:00

16 lines
383 B
TOML

[package]
name = "kernel"
version = "0.0.1"
edition = "2021"
license = "Unlicense AND BSD-3-Clause-acpica"
[dependencies]
bitfield = "0.17.0"
bitvec = {version = "1.0.1", default-features = false, features = ["alloc", "atomic"]}
buddy_system_allocator = "0.11.0"
kernel-common = {path = "../lib/kernel-common"}
log = "0.4.22"
spin = "0.9.8"
[build-dependencies]
bindgen = "0.70.1"