rustkernel/kernel/Cargo.toml
ale 7409cd4d26
initial commit
Signed-off-by: ale <ale@manalejandro.com>
2025-06-15 22:26:49 +02:00

24 lines
471 B
TOML

[package]
name = "kernel"
version = "0.1.0"
edition = "2021"
authors = ["Rust Kernel Contributors"]
description = "Core kernel APIs and functionality"
license = "GPL-2.0"
[lib]
name = "kernel"
crate-type = ["rlib"]
[dependencies]
spin = "0.9"
bitflags = "2.4"
linked_list_allocator = "0.10"
once_cell = { version = "1.19", default-features = false, features = ["critical-section"] }
[features]
default = []
alloc = []
smp = [] # Symmetric Multi-Processing
debug = []