curiOS/kernel/Cargo.toml
2026-08-05 19:00:32 +02:00

36 lines
682 B
TOML

[package]
name = "kernel"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "kernel"
path = "src/main.rs"
test = false
bench = false
[lib]
test = true
bench = false
[[test]]
name = "simple"
harness = false
[[test]]
name = "stack_overflow"
harness = false
test = false # currently doesn't work reliably because the stack corrupts something
[dependencies]
bit_field = "0.10.3"
bitflags = "2.13.1"
log = { version = "0.4", default-features = false }
seq-macro = "0.3.6"
rbtree = { path = "../crates/rbtree" }
plain = "0.2.3"
rustc-demangle = "0.1.28"
num-traits = { version = "0.2.19", default-features = false }
foundation = { version = "0.1.0", path = "../crates/foundation" }