23 lines
655 B
TOML
23 lines
655 B
TOML
[workspace]
|
|
resolver = "3"
|
|
members = [ "user/*"]
|
|
exclude = ["library"]
|
|
|
|
[package]
|
|
name = "kernel-rust"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
bitflags = "2"
|
|
embedded-alloc = "0.7"
|
|
kernel-macros = { path = "crates/kernel-macros" }
|
|
bytes-struct = { path = "crates/bytes-struct" }
|
|
log = "0.4"
|
|
critical-section = { version = "1", features = ["restore-state-bool"] }
|
|
bffs = { path = "crates/bffs", features = ["alloc"] }
|
|
io = { path = "crates/io", features = ["alloc"] }
|
|
shared = { path = "crates/shared", features = ["kernel"] }
|
|
goblin = { version = "0.7", default-features = false, features = ["elf32", "elf64", "endian_fd"] }
|
|
hashbrown = "0.16"
|