Files
rustkernel/kernel/Cargo.toml
2025-12-02 00:03:46 +01:00

28 líneas
461 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"
[features]
default = []
alloc = []
smp = [] # Symmetric Multi-Processing
debug = []
[build-dependencies]
cc = "1.0"
# Profile configuration moved to workspace root