17 lines
298 B
TOML
17 lines
298 B
TOML
[package]
|
|
name = "kernel-rust"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
|
|
[dependencies]
|
|
embedded-alloc = "0.7"
|
|
kernel-macros = { path = "kernel-macros" }
|
|
log = "0.4"
|
|
critical-section = { version = "1", features = ["restore-state-bool"] }
|