os/kernel/Cargo.toml

17 lines
383 B
TOML
Raw Normal View History

2024-06-29 20:50:08 +02:00
[package]
name = "kernel"
version = "0.0.1"
edition = "2021"
2024-10-11 11:03:30 +02:00
license = "Unlicense AND BSD-3-Clause-acpica"
2024-06-29 20:50:08 +02:00
[dependencies]
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-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-07-09 08:05:07 +02:00
[build-dependencies]
2024-09-13 22:18:26 +02:00
bindgen = "0.70.1"