32 lines
491 B
TOML
32 lines
491 B
TOML
[workspace]
|
|
members = [
|
|
"lib/lib_framebuffer",
|
|
"lib/lib_serial",
|
|
"lib/lib_ascii",
|
|
"kernel"
|
|
, "lib/lib_application"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.dev]
|
|
opt-level = "z"
|
|
debug = true
|
|
debug-assertions = true
|
|
overflow-checks = true
|
|
lto = false
|
|
incremental = false
|
|
codegen-units = 1
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = false
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
lto = true
|
|
incremental = false
|
|
codegen-units = 1
|
|
|