15 lines
220 B
TOML
15 lines
220 B
TOML
cargo-features = ["profile-rustflags"]
|
|
|
|
[workspace]
|
|
resolver = "3"
|
|
members = ["kernel", "user/*"]
|
|
default-members = ["kernel"]
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
opt-level = 0
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
debug = true
|